custom.d.ts 484 B

12345678910111213
  1. import { default as TsHelper, TsGenConfig, TsHelperConfig } from '../core';
  2. import * as utils from '../utils';
  3. declare function CustomGenerator(config: TsGenConfig, baseConfig: TsHelperConfig, tsHelper: TsHelper): utils.EggInfoResult;
  4. declare namespace CustomGenerator {
  5. var isPrivate: boolean;
  6. var defaultConfig: {
  7. directory: string;
  8. execAtInit: boolean;
  9. pattern: string[];
  10. };
  11. }
  12. export default CustomGenerator;
  13. //# sourceMappingURL=custom.d.ts.map