A closable object

interface ClosableI {
    close: (() => PromiseVow<void>);
}

Properties

Properties

close: (() => PromiseVow<void>)

Terminate the object

Type declaration

    • (): PromiseVow<void>
    • Returns PromiseVow<void>