SheetXL - v0.3.20
    Preparing search index...

    Interface WriteFormatType

    Defines the format type for saving a workbook.

    This interface extends FormatType to include additional properties specific to saving formats, such as file extension and export handler.

    interface WriteFormatType {
        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.