pdfrx_web
    Preparing search index...

    Interface PdfEmojiAssetSource

    Loads an encoded emoji asset for one complete grapheme cluster.

    interface PdfEmojiAssetSource {
        load(
            grapheme: string,
            signal?: AbortSignal,
        ): Promise<Uint8Array<ArrayBufferLike> | null>;
    }
    Index
    • Loads the encoded image bytes for a grapheme.

      Parameters

      • grapheme: string

        The complete Unicode grapheme cluster to load.

      • Optionalsignal: AbortSignal

        An optional abort signal for cancelling the load.

      Returns Promise<Uint8Array<ArrayBufferLike> | null>

      The encoded image bytes, or null when no asset is available.