extend.d.ts 333 B

1234567891011
  1. import { TsGenConfig, TsHelperConfig } from '..';
  2. declare function ExtendGenerator(config: TsGenConfig, baseConfig: TsHelperConfig): {
  3. dist: string;
  4. }[];
  5. declare namespace ExtendGenerator {
  6. var defaultConfig: {
  7. interface: PlainObject<any>;
  8. };
  9. }
  10. export default ExtendGenerator;
  11. //# sourceMappingURL=extend.d.ts.map