interface IHookConfig { commands: (string | RegExp)[]; } export interface IHook { PRE: (() => Promise) | null; POST: (() => Promise) | null; CONFIG: IHookConfig; moduleName: string; } export {};