index.d.ts 181 B

12345678910
  1. export * from './dist/index';
  2. declare module '@midwayjs/core/dist/interface' {
  3. interface MidwayConfig {
  4. book?: PowerPartial<{
  5. a: number;
  6. b: string;
  7. }>;
  8. }
  9. }