jumbo-core
Version:
Modern lightweight fast enterprise level MVW framework for Node.js
37 lines (34 loc) • 679 B
TypeScript
///<reference path="./node_modules/@types/node/index.d.ts"/>
export interface JumboNamespace {
config: any,
CONFIG_PATH: string,
CFG_PATH: string,
BASE_DIR: string,
CORE_DIR: string,
PUBLIC_DIR: string,
APP_DIR: string,
SUB_APP_DIR: string,
ERR_DIR: string,
LOG_DIR: string,
UPLOAD_DIR: string,
CACHE_DIR: string,
SESSION_DIR: string,
// namespaces
Application: any,
Adapters: any,
Autoloader: any,
Base: any,
Cluster: any,
Exceptions: any,
Ioc: any,
Logging: any,
Results: any,
Utils: any,
Validation: any,
}
declare module NodeJS {
interface Global {
Jumbo: JumboNamespace;
Application: any;
}
}