11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
// This file is created by egg-ts-helper@1.26.0
|
|
// Do not modify this file!!!!!!!!!
|
|
|
|
import 'egg';
|
|
import { EggAppConfig } from 'egg';
|
|
import ExportConfigDefault from '../../config/config.default';
|
|
type ConfigDefault = ReturnType<typeof ExportConfigDefault>;
|
|
type NewEggAppConfig = ConfigDefault;
|
|
declare module 'egg' {
|
|
interface EggAppConfig extends NewEggAppConfig { }
|
|
} |