Type alias PojoSyncAndAsyncResult<V>

PojoSyncAndAsyncResult<V>: {
    async: (() => Promise<V>);
    sync: (() => V);
}

Type Parameters

  • V

Type declaration

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

  • sync: (() => V)
      • (): V
      • Returns V

Generated using TypeDoc