-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
50 lines (43 loc) · 2.26 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// @themost-framework 2.0 Codename Blueshift Copyright (c) 2017-2025, THEMOST LP All rights reserved
export * from './mvc';
export * from './app';
export * from './types';
export * from './config';
export * from './context';
export {default as HttpBaseController} from './controllers/base';
export {default as HttpDataController} from './controllers/data';
export {default as HttpDataModelController} from './controllers/model';
export {default as HttpLookupController} from './controllers/lookup';
export {default as HttpHiddenController} from './controllers/hidden';
export {default as HttpServiceController} from './controllers/service';
export {AuthHandler, AuthStrategy, DefaultAuthStrategy,
EncryptionStrategy, DefaultEncryptionStrategy} from './handlers/auth';
export {BasicAuthHandler} from './handlers/basic-auth';
export {CorsHandler} from './handlers/cors';
export {DirectiveEngine} from './handlers/directive';
export {JsonHandler} from './handlers/json';
export {MultipartHandler} from './handlers/multipart';
export {NodeModulesHandler} from './handlers/node-modules';
export {NoopHandler} from './handlers/noop';
export {PostHandler} from './handlers/post';
export {QuerystringHandler} from './handlers/querystring';
export {RestrictAccess} from './handlers/restrict-access';
export {RouteParams} from './handlers/route-params';
export {StaticHandler} from './handlers/static';
export {ViewHandler} from './handlers/view';
export {XmlHandler} from './handlers/xml';
export {HttpConsumer} from './consumers';
export {LocalizationStrategy, DefaultLocalizationStrategy, I18nLocalizationStrategy} from './localization'
export {HttpRoute} from './http-route';
export {HtmlViewHelper} from './helpers';
export {FileStorage, AttachmentFileSystemStorage} from './files';
export {CacheStrategy, DefaultCacheStrategy} from './cache';
export {EjsEngine} from './engines/ejs';
export {NgEngine} from './engines/ng';
export {MarkdownEngine} from './engines/md';
export {VashEngine} from './engines/vash';
export {JadeEngine} from './engines/jade';
export {AngularServerModule} from './angular/module';
export {ODataModelBuilderConfiguration, ODataJsonResult} from './odata';
export {ServicesConfiguration, ServiceConfigurationElement} from './services-configuration';
export function runtime(): void;