UNPKG

389 BTypeScriptView Raw
1import { Logger } from "../logger/Logger";
2/**
3 * Loads all exported classes from the given directory.
4 */
5export declare function importClassesFromDirectories(logger: Logger, directories: string[], formats?: string[]): Function[];
6/**
7 * Loads all json files from the given directory.
8 */
9export declare function importJsonsFromDirectories(directories: string[], format?: string): any[];