Interface: RegisteredHook<T>
Defined in: hooks/types.ts:405
Internal representation of a registered hook
Type Parameters
| Type Parameter |
|---|
T |
Properties
hook
hook: T;
Defined in: hooks/types.ts:414
The hook function
id
id: string;
Defined in: hooks/types.ts:409
Unique ID for this hook registration
name?
optional name?: string;
Defined in: hooks/types.ts:419
Optional name for debugging
priority?
optional priority?: number;
Defined in: hooks/types.ts:424
Priority (lower = runs first, default: 0)