Skip to content
1 min read · 15 words

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.