You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
825 B
34 lines
825 B
// This file is created by egg-ts-helper@1.35.1
|
|
// Do not modify this file!!!!!!!!!
|
|
/* eslint-disable */
|
|
|
|
import 'egg';
|
|
import 'egg-onerror';
|
|
import 'egg-session';
|
|
import 'egg-i18n';
|
|
import 'egg-watcher';
|
|
import 'egg-multipart';
|
|
import 'egg-security';
|
|
import 'egg-development';
|
|
import 'egg-logrotator';
|
|
import 'egg-schedule';
|
|
import 'egg-static';
|
|
import 'egg-jsonp';
|
|
import 'egg-view';
|
|
import { EggPluginItem } from 'egg';
|
|
declare module 'egg' {
|
|
interface EggPlugin {
|
|
onerror?: EggPluginItem;
|
|
session?: EggPluginItem;
|
|
i18n?: EggPluginItem;
|
|
watcher?: EggPluginItem;
|
|
multipart?: EggPluginItem;
|
|
security?: EggPluginItem;
|
|
development?: EggPluginItem;
|
|
logrotator?: EggPluginItem;
|
|
schedule?: EggPluginItem;
|
|
static?: EggPluginItem;
|
|
jsonp?: EggPluginItem;
|
|
view?: EggPluginItem;
|
|
}
|
|
}
|