beeshell/dist/common/utils/validator.d.ts
2024-03-16 14:11:43 +08:00

8 lines
279 B
TypeScript

declare function dispatch(...funcs: Function[]): (...args: any[]) => boolean;
declare function register(key: string, func: Function): (...args: any[]) => boolean;
declare const _default: {
dispatch: typeof dispatch;
register: typeof register;
};
export default _default;