2025-01-09 20:42:31 +08:00

11 lines
181 B
TypeScript

export * from './dist/index';
declare module '@midwayjs/core/dist/interface' {
interface MidwayConfig {
book?: PowerPartial<{
a: number;
b: string;
}>;
}
}