UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

10 lines (9 loc) 398 B
import { Logger } from "../logger/Logger"; /** * Loads all exported classes from the given directory. */ export declare function importClassesFromDirectories(logger: Logger, directories: string[], formats?: string[]): Promise<Function[]>; /** * Loads all json files from the given directory. */ export declare function importJsonsFromDirectories(directories: string[], format?: string): any[];