Interface HookConfig

interface HookConfig {
    name: string;
    operation?: readonly HookOperation[];
    stage?: readonly HookStage[];
    status?: readonly HookStatus[];
    type: string;
    [property: string]: unknown;
}

Indexable

[property: string]: unknown

Properties

name: string
operation?: readonly HookOperation[]
stage?: readonly HookStage[]
status?: readonly HookStatus[]
type: string

Generated using TypeDoc