Interface SdkResult<T>

interface SdkResult<T> {
    hash: string;
    wait: (() => Promise<T>);
}

Type Parameters

  • T

Properties

Properties

hash: string
wait: (() => Promise<T>)

Type declaration

    • (): Promise<T>
    • Returns Promise<T>