-
Notifications
You must be signed in to change notification settings - Fork 0
async.TypeAlias.StatefulRpcSettled
github-actions[bot] edited this page Jun 8, 2026
·
2 revisions
@zenstone/ts-utils / async / StatefulRpcSettled
StatefulRpcSettled<
Result> = {key:string;result:Result;type:"resolve"; } | {key:string;result:unknown;type:"reject"; }
Defined in: src/async/StatefulRpc.ts:54
settle() 的结果描述,区分 resolve / reject 两种情况。
Result