Type Alias: DevGateVerdict
ts
type DevGateVerdict =
| {
approved: true;
}
| {
approved: false;
note?: string;
};Defined in: src/batteries/dev_tools/types.ts:215
Gate verdict; omission or approval permits the step.