A component that can be started and closed later.

interface Startable {
    started: boolean;
    close(options?): MaybePromise<void>;
    start(options?): MaybePromise<void>;
}

Hierarchy

Implemented by

    Properties

    Methods

    Properties

    started: boolean

    Returns if this has started.

    Methods

    Generated using TypeDoc