SheetXL - v0.3.20
    Preparing search index...

    Interface Base64Args

    Wrapper object to explicitly indicate base64 string content.

    Use this interface to disambiguate base64 strings from URLs when the automatic detection might be ambiguous.

    // Explicit base64 (no ambiguity)
    const source: ImportSource = {
    source: { base64: 'iVBORw0KGgoAAAANSUhEUgAAA...' },
    type: 'png'
    };
    interface Base64Args {
        base64: string;
    }
    Index

    Properties

    Properties

    base64: string

    The base64 encoded string content