@edgible-team/sdk
    Preparing search index...

    Interface Operation<T>

    Handle on a long-running operation: the kick-off resource plus a waiter.

    interface Operation<T> {
        resource: T;
        waitUntilReady(opts?: WaitOptions): Promise<OperationState>;
    }

    Type Parameters

    • T
    Index

    Properties

    Methods

    Properties

    resource: T

    The resource the operation concerns (e.g. the Application).

    Methods