export type TCommandCallbackType = (args?: any, options?: any) => any; export interface ICommandArgsInterface { [key: string]: any; } export interface ICommandOptionsInterface { [key: string]: any; } export interface IOnHookAffectInterface { [key: string]: Array; } export interface IOnHookInterface { [key: string]: Array; }