effect-playwright
    Preparing search index...

    Interface Disposable

    Disposable is returned from various methods to allow undoing the corresponding action. For example, page.addInitScript(script[, arg, options]) returns a Disposable that can be used to remove the init script.

    interface Disposable {
        "[asyncDispose]"(): Promise<void>;
        dispose(): Promise<void>;
    }
    Index
    • Returns Promise<void>