16 lines
435 B
TypeScript
16 lines
435 B
TypeScript
// This file is created by egg-ts-helper@1.25.8
|
|
// Do not modify this file!!!!!!!!!
|
|
|
|
import 'egg';
|
|
import ExportLog from '../../../app/middleware/log';
|
|
import ExportProxy from '../../../app/middleware/proxy';
|
|
import ExportTokenParser from '../../../app/middleware/tokenParser';
|
|
|
|
declare module 'egg' {
|
|
interface IMiddleware {
|
|
log: typeof ExportLog;
|
|
proxy: typeof ExportProxy;
|
|
tokenParser: typeof ExportTokenParser;
|
|
}
|
|
}
|