markmap
    Preparing search index...

    Type Alias JSScriptItem

    type JSScriptItem = {
        data: {
            async?: boolean;
            defer?: boolean;
            src?: string;
            textContent?: string;
        };
        loaded?: Promise<void>;
        type: "script";
    }
    Index

    Properties

    Properties

    data: { async?: boolean; defer?: boolean; src?: string; textContent?: string }
    loaded?: Promise<void>
    type: "script"