@turbowarp/types-tw
    Preparing search index...

    Interface SecurityManager

    interface SecurityManager {
        canFetch(url: string): Awaitable<boolean>;
        canLoadExtensionFromProject(url: string): Awaitable<boolean>;
        canNotify(): Awaitable<boolean>;
        canOpenWindow(url: string): Awaitable<boolean>;
        canReadClipboard(): Awaitable<boolean>;
        canRecordAudio(): Awaitable<boolean>;
        canRecordVideo(): Awaitable<boolean>;
        canRedirect(url: string): Awaitable<boolean>;
        getSandboxMode(url: string): Awaitable<"worker" | "iframe" | "unsandboxed">;
    }
    Index

    Methods