class.d.ts 386 B

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