@kayahr/observable

    Type Alias CompleteObserver

    Partial interface type for observer defining a mandatory complete method. Used to construct the actual Observer type.

    type CompleteObserver = {
        complete(value?: unknown): void;
    }
    Index

    Methods

    Methods

    • Receives a completion notification.

      Parameters

      • Optionalvalue: unknown

        Optional completion value. This is not documented in the spec but used in the specs unit tests.

      Returns void

    MMNEPVFCICPMFPCPTTAAATR