File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * TypeScript support for auto-imported components using `vite-plugin-components`:
3
+ * see: https://github.com/antfu/vite-plugin-components#typescript
4
+ */
5
+
6
+ declare module 'vue' {
7
+ export interface GlobalComponents {
8
+ CAspectRatio : typeof import ( '@chakra-ui/vue-next' ) [ 'CAspectRatio' ]
9
+ CBadge : typeof import ( '@chakra-ui/vue-next' ) [ 'CBadge' ]
10
+ CBox : typeof import ( '@chakra-ui/vue-next' ) [ 'CBox' ]
11
+ CCircle : typeof import ( '@chakra-ui/vue-next' ) [ 'CCircle' ]
12
+ CSquare : typeof import ( '@chakra-ui/vue-next' ) [ 'CSquare' ]
13
+ }
14
+ }
15
+
16
+ export { }
Original file line number Diff line number Diff line change @@ -114,3 +114,5 @@ export * from '@chakra-ui/c-theme-provider'
114
114
115
115
// V
116
116
export * from '@chakra-ui/c-visually-hidden'
117
+
118
+ export * from './components'
You can’t perform that action at this time.
0 commit comments