SheetXL - v0.3.20
    Preparing search index...

    Interface FormatType

    Union type representing all possible input sources for workbook imports.

    This type is used to define the source of data for importing workbooks, allowing for various formats such as URLs, files, and raw binary data.

    interface FormatType {
        description?: string;
        isDefault?: boolean;
        key: string;
        mimeType: string;
        tags?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: string

    A description of the type of import.

    isDefault?: boolean

    Indicates if this is the default import type.

    false
    

    For import the default doesn't have any significance other than an indicator for the UI.

    key: string

    The key used to identify the type of import.

    mimeType: string

    The mime type of the import.

    tags?: string[]

    Tags that are used by the UI.