UNPKG

@jeaks03/overseer

Version:

Just another TypeScript Back-End framework

8 lines (7 loc) 290 B
import { Class } from "./custom-types"; export declare class Utils { static clearPromise<T>(target: Promise<T>): T; static instanceOf<T>(target: any, clazz: Class<T>): boolean; static isDirectory(path: any): boolean; static getSourceFiles(relativePath: string): string[]; }