egg-ts-helper
Version:
egg typescript helper
15 lines (14 loc) • 360 B
TypeScript
import { TsGenConfig, TsHelperConfig } from '..';
declare function FunctionGenerator(config: TsGenConfig, baseConfig: TsHelperConfig): {
dist: string;
content?: undefined;
} | {
dist: string;
content: string;
};
declare namespace FunctionGenerator {
var defaultConfig: {
distName: string;
};
}
export default FunctionGenerator;