UNPKG

@expressots/cli

Version:

Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)

16 lines (15 loc) 428 B
import { Service } from "ts-node"; import { ExpressoConfig } from "@expressots/shared"; /** * Singleton compiler class */ declare class Compiler { private static instance; private constructor(); static get Instance(): Compiler; getService(): Promise<Service>; private static interopRequireDefault; private static findConfig; static loadConfig(): Promise<ExpressoConfig>; } export default Compiler;