Interface ExportType<T>

interface ExportType<T> {
    description: string;
    ext: string;
    handler: string | WorkbookExporter<T>;
    isDefault?: boolean;
    key: string;
    mimeType: string;
    tags?: string[];
}

Type Parameters

  • T extends ExportWorkbookOptions = ExportWorkbookOptions

Properties

description: string
ext: string
handler: string | WorkbookExporter<T>
isDefault?: boolean

Default Value

false
key: string
mimeType: string
tags?: string[]