KC's Workspace
    Preparing search index...
    interface PreRenderedAsset {
        name?: string;
        names: string[];
        originalFileName?: string;
        originalFileNames: string[];
        source: string | Uint8Array<ArrayBufferLike>;
        type: "asset";
    }
    Index

    Properties

    name?: string

    Use names instead.

    names: string[]
    originalFileName?: string

    Use originalFileNames instead.

    originalFileNames: string[]

    The list of the absolute paths to the original file of this asset.

    source: string | Uint8Array<ArrayBufferLike>

    The content of this asset.

    type: "asset"