Interface ReleaseAction<T>

The object returned by the Releases API

interface ReleaseAction<T> {
    action: T;
    sys: ReleaseActionSysProps;
    get(): ReleaseAction<any>;
    toPlainObject(): ReleaseActionProps<T>;
    waitProcessing(options?: AsyncActionProcessingOptions): ReleaseAction<any>;
}

Type Parameters

Hierarchy (view full)

Properties

action: T

Methods