Skip to content

async.TypeAlias.StatefulRpcSettled

github-actions[bot] edited this page Jun 8, 2026 · 2 revisions

@zenstone/ts-utils / async / StatefulRpcSettled

Type Alias: StatefulRpcSettled<Result>

StatefulRpcSettled<Result> = { key: string; result: Result; type: "resolve"; } | { key: string; result: unknown; type: "reject"; }

Defined in: src/async/StatefulRpc.ts:54

settle() 的结果描述,区分 resolve / reject 两种情况。

Type Parameters

Result

Result

Clone this wiki locally