plugin.d.ts 496 B

1234567891011121314
  1. import { TsGenConfig, TsHelperConfig } from '..';
  2. import * as utils from '../utils';
  3. declare function PluginGenerator(config: TsGenConfig, baseConfig: TsHelperConfig): utils.EggInfoResult;
  4. declare namespace PluginGenerator {
  5. var isPrivate: boolean;
  6. var defaultConfig: {
  7. pattern: string;
  8. interface: string;
  9. /** use path insteadof package while import plugins */
  10. usePath: boolean;
  11. };
  12. }
  13. export default PluginGenerator;
  14. //# sourceMappingURL=plugin.d.ts.map