@orangecheck/pledge-core / ResolutionValidateResult
Type Alias: ResolutionValidateResult
type ResolutionValidateResult =
| {
mechanism: ResolutionMechanism;
ok: true;
}
| {
code: "E_RESOLUTION_UNKNOWN" | "E_RESOLUTION_NONDETERMINISTIC";
ok: false;
reason: string;
};
Defined in: pledge-core/src/resolution.ts:19