Graphorin API reference v0.13.8
Graphorin API reference / @graphorin/tools / / ApprovalDecision
Type Alias: ApprovalDecision
ts
type ApprovalDecision =
| {
granted: true;
}
| {
granted: false;
reason?: string;
};Defined in: packages/tools/src/executor/types.ts:288
Approval gate decision.