UNPKG

egg-ts-helper

Version:
15 lines (14 loc) 351 B
import { TsGenConfig, TsHelperConfig } from '..'; declare function ClassGenerator(config: TsGenConfig, baseConfig: TsHelperConfig): { dist: string; content?: undefined; } | { dist: string; content: string; }; declare namespace ClassGenerator { var defaultConfig: { distName: string; }; } export default ClassGenerator;