Type Alias JSScriptItem

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

Type declaration

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