Type Alias: DevGateFn
ts
type DevGateFn = (
ctx: DevGateContext,
call: DevGateCall,
) => DevGateVerdict | void | Promise<DevGateVerdict | void>;Defined in: src/batteries/dev_tools/types.ts:242
Gate callback used by the pipeline.
Parameters
| Parameter | Type |
|---|---|
ctx | DevGateContext |
call | DevGateCall |
Returns
| DevGateVerdict | void | Promise<DevGateVerdict | void>