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