tiny-essentials
Version:
Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.
6 lines • 371 B
text/typescript
export default custom_module_manager;
declare namespace custom_module_manager {
function validator(custom_modules: Record<string, any>, type: string): boolean;
function run(custom_modules: Record<string, Function> | Function[], db_prepare: any, hookType: string, options?: Record<string, any>): Promise<void>;
}
//# sourceMappingURL=custom_module_loader.d.mts.map