AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface BrowserFileSource

    A file to register from the browser. Provide data (content), not a path.

    interface BrowserFileSource {
        data: string | ArrayBuffer | Uint8Array<ArrayBufferLike> | Blob;
        encoding?: string;
        filename?: string;
        format?: FileFormat;
        sheet?: string;
        table: string;
    }
    Index
    data: string | ArrayBuffer | Uint8Array<ArrayBufferLike> | Blob

    The uploaded content: a File/Blob (streamed), ArrayBuffer, or text.

    encoding?: string
    filename?: string

    Original filename, used to infer format when format is omitted.

    format?: FileFormat
    sheet?: string

    Excel worksheet to read (by name). Only used for xlsx; defaults to the first sheet. Register the same workbook once per sheet with distinct table names for multiple sheets.

    table: string