-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.ts
56 lines (52 loc) · 1.15 KB
/
index.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
50
51
52
53
54
55
56
import { addIcons } from 'ionicons';
export {
createAnimation,
createGesture,
AlertButton,
AlertInput,
Gesture,
GestureConfig,
GestureDetail,
mdTransitionAnimation,
iosTransitionAnimation,
setupConfig
} from '@ionic/core';
import {
arrowBackSharp,
caretBackSharp,
chevronBack,
chevronForward,
close,
closeCircle,
closeSharp,
menuOutline,
menuSharp,
reorderThreeOutline,
reorderTwoSharp,
searchOutline,
searchSharp
} from 'ionicons/icons';
import { install } from './ionic';
export default {
install,
version: '__VERSION__'
};
export { default as IonicVueRouter } from './router';
export * from './controllers';
export * from './components';
// Icons that are used by internal components
addIcons({
'arrow-back-sharp': arrowBackSharp,
'caret-back-sharp': caretBackSharp,
'chevron-back': chevronBack,
'chevron-forward': chevronForward,
close,
'close-circle': closeCircle,
'close-sharp': closeSharp,
'menu-outline': menuOutline,
'menu-sharp': menuSharp,
'reorder-two-sharp': reorderTwoSharp,
'reorder-three-outline': reorderThreeOutline,
'search-outline': searchOutline,
'search-sharp': searchSharp
});