// tim.nguyen 2024/03/28 - Higher Order Component patterns export enum CustomDirectiveDefinitionType { PUSHER = 'PUSHER', VALIDATOR = 'VALIDATOR', } export type CustomDirectiveDefinition = { key: string; type: string; mergeFiles: string[]; code: any; };