Interface ImportType<T>

interface ImportType<T> {
    description?: string;
    exts: string[];
    handler: string | WorkbookImporter<T>;
    isDefault?: boolean;
    key: string;
    mimeType: string;
    tags?: string;
}

Type Parameters

  • T extends ImportWorkbookOptions = ImportWorkbookOptions

Properties

description?: string
exts: string[]
handler: string | WorkbookImporter<T>
isDefault?: boolean

Default Value

false
key: string
mimeType: string
tags?: string