function.d.ts 398 B

123456789101112131415
  1. import { TsGenConfig, TsHelperConfig } from '..';
  2. declare function FunctionGenerator(config: TsGenConfig, baseConfig: TsHelperConfig): {
  3. dist: string;
  4. content?: undefined;
  5. } | {
  6. dist: string;
  7. content: string;
  8. };
  9. declare namespace FunctionGenerator {
  10. var defaultConfig: {
  11. distName: string;
  12. };
  13. }
  14. export default FunctionGenerator;
  15. //# sourceMappingURL=function.d.ts.map