Type alias PojoAsyncResult<V>

PojoAsyncResult<V>: {
    async: (() => Promise<V>);
    sync?: never;
}

Type Parameters

  • V

Type declaration

  • async: (() => Promise<V>)
      • (): Promise<V>
      • Returns Promise<V>

  • Optional sync?: never

Generated using TypeDoc