UNPKG

@dazejs/framework

Version:

Daze.js - A powerful web framework for Node.js

43 lines (42 loc) 1.27 kB
export declare const MULTITON: unique symbol; export declare const SINGLETON: unique symbol; export declare const SESSION: { NEW_FLASHS: string; OLD_FLASHS: string; PREVIOUS: string; CURRENT: string; OLD_INPUT: string; ERRORS: string; }; export declare const HTTP_CODE = "__DAZE_HTTP_CODE__"; export declare const HTTP_HEADER = "__DAZE_HTTP_HEADER__"; export declare const INJECTORS: { REQUEST: string; RESPONSE: string; REQ: string; RES: string; QUERY: string; PARAMS: string; BODY: string; HEADERS: string; SERVICE: string; COOKIE: string; SESSION: string; }; export declare const ProviderType: { PROVIDER: symbol; PROVIDE: symbol; ORDER: symbol; }; export declare const ProcessType: { ONLY_AGENT: symbol; APPEND_AGENT: symbol; ONLY_MASTER: symbol; APPEND_MASTER: symbol; }; export declare const DISABLE_INJECT = "daze:disable_inject"; export declare const INJECTABLE = "daze:injectable"; export declare const PARAMTYPES_METADATA = "design:paramtypes"; export declare const PROPERTYTYPE_METADATA = "daze:property_type_metadata"; export declare const INJECTTYPE_METADATA = "daze:inject_type_metadata"; export declare const ASYNC_LOCAL_STORAGE = "daze:async_local_storage";