-
-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathindex.ts
More file actions
38 lines (33 loc) · 1.41 KB
/
index.ts
File metadata and controls
38 lines (33 loc) · 1.41 KB
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
// Initial imports and polyfills
import '@nativescript/core';
import '@nativescript/zone-js';
// TODO: migrate to standard zone.js if possible
// investigate Ivy with templated-items-comp to allow standard zone below to be used instead of patched {N} zone above
// import 'zone.js/dist/zone';
import './dom-adapter';
// import "./polyfills/array";
import './polyfills/console';
import 'nativescript-intl';
export * from './platform-common';
export * from './platform-providers';
export * from './platform';
export * from './resource-loader';
export * from './nativescript.module';
export * from './common';
export * from './common/detached-loader';
export * from './common/utils';
export { NativeScriptAnimationsModule } from './animations';
export * from './file-system';
export * from './http-client';
export * from './forms';
export * from './directives';
export * from './router';
export * from './frame.service';
export { NativeScriptRenderer } from './renderer';
export { EmulatedRenderer } from './renderer-emulated';
export { NativeScriptRendererFactory } from './renderer-factory';
// utils
export { NativeScriptDebug } from './trace';
export * from './app-host-view';
export { getViewClass, getViewMeta, isKnownView, registerElement, CommentNode, getSingleViewRecursive, isInvisibleNode, isView } from './element-registry';
export type { NgView, ViewClass, ViewClassMeta, ViewResolver, ViewExtensions } from './element-registry';