stacks 0.0.9 → 0.37.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (219) hide show
  1. package/.gitignore +10 -0
  2. package/LICENSE.md +21 -0
  3. package/README.md +65 -104
  4. package/auto-imports.d.ts +826 -0
  5. package/bin/stacks.mjs +4 -0
  6. package/components.d.ts +22 -0
  7. package/core/actions/README.md +59 -0
  8. package/core/actions/node_modules/.bin/markdown-it +17 -0
  9. package/core/actions/node_modules/.bin/mkdist +17 -0
  10. package/core/actions/node_modules/.bin/tsc +17 -0
  11. package/core/actions/node_modules/.bin/tsserver +17 -0
  12. package/core/actions/package.json +64 -0
  13. package/core/actions/src/copy-types.ts +22 -0
  14. package/core/actions/src/generate/component-meta.ts +94 -0
  15. package/core/actions/src/generate/index.ts +4 -0
  16. package/core/actions/src/generate/lib-entries.ts +106 -0
  17. package/core/actions/src/generate/package-json.ts +87 -0
  18. package/core/actions/src/generate/vscode-custom-data.ts +28 -0
  19. package/core/actions/src/generate/vue-compat.ts +17 -0
  20. package/core/actions/src/generate-component-meta.ts +19 -0
  21. package/core/actions/src/generate-ide-helpers.ts +23 -0
  22. package/core/actions/src/generate-lib-entries.ts +22 -0
  23. package/core/actions/src/generate-package-json.ts +15 -0
  24. package/core/actions/src/generate-vscode-custom-data.ts +20 -0
  25. package/core/actions/src/generate-vue-compat.ts +10 -0
  26. package/core/arrays/README.md +59 -0
  27. package/core/arrays/node_modules/.bin/mkdist +17 -0
  28. package/core/arrays/node_modules/.bin/tsc +17 -0
  29. package/core/arrays/node_modules/.bin/tsserver +17 -0
  30. package/core/arrays/package.json +50 -0
  31. package/core/arrays/src/index.ts +3 -0
  32. package/core/build/README.md +59 -0
  33. package/core/build/entries/README.md +7 -0
  34. package/core/build/node_modules/.bin/acorn +17 -0
  35. package/core/build/node_modules/.bin/browserslist +17 -0
  36. package/core/build/node_modules/.bin/jiti +17 -0
  37. package/core/build/node_modules/.bin/mkdist +17 -0
  38. package/core/build/node_modules/.bin/rollup +17 -0
  39. package/core/build/node_modules/.bin/vite +17 -0
  40. package/core/build/node_modules/.bin/vite-ssg +17 -0
  41. package/core/build/node_modules/.bin/vue-docgen-web-types +17 -0
  42. package/core/build/package.json +71 -0
  43. package/core/build/src/example-vue.ts +26 -0
  44. package/core/build/src/example-wc.ts +26 -0
  45. package/core/build/src/functions.ts +56 -0
  46. package/core/build/src/index.ts +7 -0
  47. package/core/build/src/pages.ts +50 -0
  48. package/core/build/src/stacks.ts +204 -0
  49. package/core/build/src/vue-components.ts +76 -0
  50. package/core/build/src/web-components.ts +63 -0
  51. package/core/build/web-types.config.cjs +4 -0
  52. package/core/build/web-types.ts +14 -0
  53. package/core/collections/README.md +59 -0
  54. package/core/collections/node_modules/.bin/mkdist +17 -0
  55. package/core/collections/node_modules/.bin/tsc +17 -0
  56. package/core/collections/node_modules/.bin/tsserver +17 -0
  57. package/core/collections/package.json +54 -0
  58. package/core/collections/src/index.ts +1 -0
  59. package/core/fs/README.md +59 -0
  60. package/core/fs/node_modules/.bin/mkdist +17 -0
  61. package/core/fs/package.json +56 -0
  62. package/core/fs/src/index.ts +170 -0
  63. package/core/helpers/node_modules/.bin/mkdist +17 -0
  64. package/core/helpers/package.json +58 -0
  65. package/core/helpers/src/index.ts +129 -0
  66. package/core/modules/README.md +61 -0
  67. package/core/modules/node_modules/.bin/acorn +17 -0
  68. package/core/modules/node_modules/.bin/mkdist +17 -0
  69. package/core/modules/package.json +51 -0
  70. package/core/modules/src/i18n.ts +23 -0
  71. package/core/modules/src/nprogress.ts +12 -0
  72. package/core/modules/src/pwa.ts +12 -0
  73. package/core/objects/README.md +59 -0
  74. package/core/objects/node_modules/.bin/mkdist +17 -0
  75. package/core/objects/node_modules/.bin/tsc +17 -0
  76. package/core/objects/node_modules/.bin/tsserver +17 -0
  77. package/core/objects/package.json +51 -0
  78. package/core/objects/src/index.ts +1 -0
  79. package/core/paths/node_modules/.bin/mkdist +17 -0
  80. package/core/paths/node_modules/.bin/tsc +17 -0
  81. package/core/paths/node_modules/.bin/tsserver +17 -0
  82. package/core/paths/package.json +51 -0
  83. package/core/paths/src/index.ts +178 -0
  84. package/core/router/README.md +59 -0
  85. package/core/router/node_modules/.bin/mkdist +17 -0
  86. package/core/router/package.json +51 -0
  87. package/core/router/src/index.ts +14 -0
  88. package/core/security/README.md +59 -0
  89. package/core/security/node_modules/.bin/mkdist +17 -0
  90. package/core/security/package.json +56 -0
  91. package/core/security/src/crypt.ts +14 -0
  92. package/core/security/src/hash.ts +52 -0
  93. package/core/security/src/index.ts +3 -0
  94. package/core/security/src/key.ts +11 -0
  95. package/core/strings/README.md +59 -0
  96. package/core/strings/node_modules/.bin/mkdist +17 -0
  97. package/core/strings/node_modules/.bin/tsc +17 -0
  98. package/core/strings/node_modules/.bin/tsserver +17 -0
  99. package/core/strings/package.json +63 -0
  100. package/core/strings/src/index.ts +14 -0
  101. package/core/types/README.md +59 -0
  102. package/core/types/node_modules/.bin/markdown-it +17 -0
  103. package/core/types/node_modules/.bin/mkdist +17 -0
  104. package/core/types/node_modules/.bin/vite +17 -0
  105. package/core/types/node_modules/.bin/vitepress +17 -0
  106. package/core/types/package.json +60 -0
  107. package/core/types/src/app.ts +131 -0
  108. package/core/types/src/auto-imports.ts +3 -0
  109. package/core/types/src/build.ts +3 -0
  110. package/core/types/src/cli.ts +49 -0
  111. package/core/types/src/components.ts +66 -0
  112. package/core/types/src/deploy.ts +11 -0
  113. package/core/types/src/docs.ts +3 -0
  114. package/core/types/src/exit-code.ts +10 -0
  115. package/core/types/src/fs.ts +17 -0
  116. package/core/types/src/git.ts +131 -0
  117. package/core/types/src/hashing.ts +107 -0
  118. package/core/types/src/i18n.ts +19 -0
  119. package/core/types/src/index.ts +21 -0
  120. package/core/types/src/inspect.ts +10 -0
  121. package/core/types/src/layout.ts +8 -0
  122. package/core/types/src/library.ts +148 -0
  123. package/core/types/src/manifest.ts +9 -0
  124. package/core/types/src/markdown.ts +198 -0
  125. package/core/types/src/pages.ts +8 -0
  126. package/core/types/src/pwa.ts +8 -0
  127. package/core/types/src/ssg.ts +3 -0
  128. package/core/types/src/ui.ts +141 -0
  129. package/core/ui/README.md +60 -0
  130. package/core/ui/node_modules/.bin/mkdist +17 -0
  131. package/core/ui/node_modules/.bin/tsc +17 -0
  132. package/core/ui/node_modules/.bin/tsserver +17 -0
  133. package/core/ui/node_modules/.bin/vite +17 -0
  134. package/core/ui/node_modules/.bin/vue-tsc +17 -0
  135. package/core/ui/package.json +62 -0
  136. package/core/ui/src/index.ts +60 -0
  137. package/custom-elements.json +14 -0
  138. package/examples/vue-components/App.vue +12 -0
  139. package/examples/vue-components/favicon.png +0 -0
  140. package/examples/vue-components/index.html +20 -0
  141. package/examples/web-components/favicon.png +0 -0
  142. package/examples/web-components/index.html +13 -0
  143. package/functions/node_modules/.bin/artisan +17 -0
  144. package/functions/node_modules/.bin/stacks +17 -0
  145. package/functions/node_modules/.bin/stx +17 -0
  146. package/functions/package.json +40 -0
  147. package/netlify.toml +18 -0
  148. package/nitro.config.ts +6 -0
  149. package/package.json +224 -27
  150. package/pages/App.vue +26 -0
  151. package/pages/index.html +23 -0
  152. package/pages/main.ts +26 -0
  153. package/pages/public/_headers +3 -0
  154. package/pages/public/favicon-dark.svg +3 -0
  155. package/pages/public/favicon.svg +3 -0
  156. package/pages/public/pwa-192x192.png +0 -0
  157. package/pages/public/pwa-512x512.png +0 -0
  158. package/pages/public/safari-pinned-tab.svg +41 -0
  159. package/pages/styles/main.css +29 -0
  160. package/pages/styles/markdown.css +28 -0
  161. package/scripts/ensure-env.sh +248 -0
  162. package/shims.d.ts +29 -0
  163. package/simple-git-hooks.cjs +4 -0
  164. package/src/cli/actions/build.ts +160 -0
  165. package/src/cli/actions/commit.ts +9 -0
  166. package/src/cli/actions/dev.ts +47 -0
  167. package/src/cli/actions/examples.ts +74 -0
  168. package/src/cli/actions/fresh.ts +9 -0
  169. package/src/cli/actions/generate.ts +159 -0
  170. package/src/cli/actions/index.ts +12 -0
  171. package/src/cli/actions/key.ts +31 -0
  172. package/src/cli/actions/lint.ts +19 -0
  173. package/src/cli/actions/make.ts +116 -0
  174. package/src/cli/actions/release.ts +9 -0
  175. package/src/cli/actions/test.ts +39 -0
  176. package/src/cli/actions/types.ts +180 -0
  177. package/src/cli/actions/update.ts +90 -0
  178. package/src/cli/build.ts +49 -0
  179. package/src/cli/create.ts +71 -0
  180. package/src/cli/dev.ts +28 -0
  181. package/src/cli/example.ts +28 -0
  182. package/src/cli/generate.ts +64 -0
  183. package/src/cli/index.ts +13 -0
  184. package/src/cli/key.ts +12 -0
  185. package/src/cli/make.ts +47 -0
  186. package/src/cli/test.ts +24 -0
  187. package/src/cli/types.ts +18 -0
  188. package/src/cli/update.ts +17 -0
  189. package/src/cli/utility.ts +39 -0
  190. package/src/cli.ts +48 -0
  191. package/src/docs.ts +4 -0
  192. package/src/index.ts +22 -0
  193. package/tsconfig.json +96 -0
  194. package/vitest.config.ts +22 -0
  195. package/vue-components/dist/.gitkeep +0 -0
  196. package/vue-components/index.html +13 -0
  197. package/vue-components/main.ts +18 -0
  198. package/vue-components/node_modules/.bin/artisan +17 -0
  199. package/vue-components/node_modules/.bin/stacks +17 -0
  200. package/vue-components/node_modules/.bin/stx +17 -0
  201. package/vue-components/node_modules/.vite/deps/@vueuse_core.js +7847 -0
  202. package/vue-components/node_modules/.vite/deps/@vueuse_core.js.map +7 -0
  203. package/vue-components/node_modules/.vite/deps/_metadata.json +13 -0
  204. package/vue-components/node_modules/.vite/deps/package.json +1 -0
  205. package/vue-components/package.json +40 -0
  206. package/web-components/dist/.gitkeep +0 -0
  207. package/web-components/node_modules/.bin/artisan +17 -0
  208. package/web-components/node_modules/.bin/stacks +17 -0
  209. package/web-components/node_modules/.bin/stx +17 -0
  210. package/web-components/package.json +40 -0
  211. package/web-types.json +67 -0
  212. package/.npmignore +0 -1
  213. package/.travis.yml +0 -4
  214. package/examples/stringReverse.js +0 -41
  215. package/examples/sumServer.js +0 -21
  216. package/examples/sumWorker.js +0 -23
  217. package/index.js +0 -1
  218. package/lib/stacks.js +0 -398
  219. package/test/test.stacks.js +0 -148
@@ -0,0 +1,826 @@
1
+ // Generated by 'unplugin-auto-import'
2
+ export {}
3
+ declare global {
4
+ const $$: typeof import('vue/macros')['$$']
5
+ const $: typeof import('vue/macros')['$']
6
+ const $computed: typeof import('vue/macros')['$computed']
7
+ const $customRef: typeof import('vue/macros')['$customRef']
8
+ const $ref: typeof import('vue/macros')['$ref']
9
+ const $shallowRef: typeof import('vue/macros')['$shallowRef']
10
+ const $toRef: typeof import('vue/macros')['$toRef']
11
+ const Collection: typeof import('./core/collections/src/index')['Collection']
12
+ const EffectScope: typeof import('vue')['EffectScope']
13
+ const _dirname: typeof import('./core/fs/src/index')['_dirname']
14
+ const actionsPath: typeof import('./core/paths/src/index')['actionsPath']
15
+ const afterAll: typeof import('vitest')['afterAll']
16
+ const afterEach: typeof import('vitest')['afterEach']
17
+ const aliasPath: typeof import('./core/paths/src/index')['aliasPath']
18
+ const app: typeof import('../config/app')['app']
19
+ const arraysPath: typeof import('./core/paths/src/index')['arraysPath']
20
+ const assert: typeof import('vitest')['assert']
21
+ const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
22
+ const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
23
+ const base64Encode: typeof import('./core/security/src/hash')['base64Encode']
24
+ const base64Verify: typeof import('./core/security/src/hash')['base64Verify']
25
+ const bcryptEncode: typeof import('./core/security/src/hash')['bcryptEncode']
26
+ const bcryptVerify: typeof import('./core/security/src/hash')['bcryptVerify']
27
+ const beforeAll: typeof import('vitest')['beforeAll']
28
+ const beforeEach: typeof import('vitest')['beforeEach']
29
+ const buildEnginePath: typeof import('./core/paths/src/index')['buildEnginePath']
30
+ const buildEntriesPath: typeof import('./core/paths/src/index')['buildEntriesPath']
31
+ const buildPath: typeof import('./core/paths/src/index')['buildPath']
32
+ const camelCase: typeof import('./core/strings/src/index')['camelCase']
33
+ const capitalCase: typeof import('./core/strings/src/index')['capitalCase']
34
+ const chai: typeof import('vitest')['chai']
35
+ const clamp: typeof import('@vueuse/shared')['clamp']
36
+ const cliPath: typeof import('./core/paths/src/index')['cliPath']
37
+ const collect: typeof import('./core/collections/src/index')['collect']
38
+ const collectionsPath: typeof import('./core/paths/src/index')['collectionsPath']
39
+ const componentsPath: typeof import('./core/paths/src/index')['componentsPath']
40
+ const computed: typeof import('vue')['computed']
41
+ const computedAsync: typeof import('@vueuse/core')['computedAsync']
42
+ const computedEager: typeof import('@vueuse/core')['computedEager']
43
+ const computedInject: typeof import('@vueuse/core')['computedInject']
44
+ const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
45
+ const config: typeof import('./core/helpers/src/index')['config']
46
+ const configPath: typeof import('./core/paths/src/index')['configPath']
47
+ const constantCase: typeof import('./core/strings/src/index')['constantCase']
48
+ const contains: typeof import('./core/arrays/src/index')['contains']
49
+ const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
50
+ const controlledRef: typeof import('@vueuse/core')['controlledRef']
51
+ const copyFolder: typeof import('./core/fs/src/index')['copyFolder']
52
+ const corePath: typeof import('./core/paths/src/index')['corePath']
53
+ const count: typeof import('../functions/counter')['count']
54
+ const createApp: typeof import('vue')['createApp']
55
+ const createEventHook: typeof import('@vueuse/core')['createEventHook']
56
+ const createGenericProjection: typeof import('@vueuse/math')['createGenericProjection']
57
+ const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
58
+ const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
59
+ const createProjection: typeof import('@vueuse/math')['createProjection']
60
+ const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
61
+ const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
62
+ const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
63
+ const customElementsDataPath: typeof import('./core/paths/src/index')['customElementsDataPath']
64
+ const customRef: typeof import('vue')['customRef']
65
+ const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
66
+ const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
67
+ const decrypt: typeof import('./core/security/src/crypt')['decrypt']
68
+ const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
69
+ const defineComponent: typeof import('vue')['defineComponent']
70
+ const deleteEmptyFolders: typeof import('./core/fs/src/index')['deleteEmptyFolders']
71
+ const deleteFiles: typeof import('./core/fs/src/index')['deleteFiles']
72
+ const deleteFolder: typeof import('./core/fs/src/index')['deleteFolder']
73
+ const deploy: typeof import('../config/deploy')['deploy']
74
+ const describe: typeof import('vitest')['describe']
75
+ const determineResetPreset: typeof import('./core/helpers/src/index')['determineResetPreset']
76
+ const docs: typeof import('../config/docs')['default']
77
+ const doesFolderExist: typeof import('./core/fs/src/index')['doesFolderExist']
78
+ const dotCase: typeof import('./core/strings/src/index')['dotCase']
79
+ const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
80
+ const effectScope: typeof import('vue')['effectScope']
81
+ const encrypt: typeof import('./core/security/src/crypt')['encrypt']
82
+ const env: typeof import('./core/helpers/src/index')['env']
83
+ const examplesPath: typeof import('./core/paths/src/index')['examplesPath']
84
+ const expect: typeof import('vitest')['expect']
85
+ const extendRef: typeof import('@vueuse/core')['extendRef']
86
+ const frameworkPath: typeof import('./core/paths/src/index')['frameworkPath']
87
+ const fsPath: typeof import('./core/paths/src/index')['fsPath']
88
+ const functionsPath: typeof import('./core/paths/src/index')['functionsPath']
89
+ const generateAppKey: typeof import('./core/security/src/key')['generateAppKey']
90
+ const getCurrentInstance: typeof import('vue')['getCurrentInstance']
91
+ const getCurrentScope: typeof import('vue')['getCurrentScope']
92
+ const git: typeof import('../config/git')['git']
93
+ const h: typeof import('vue')['h']
94
+ const hasComponents: typeof import('./core/fs/src/index')['hasComponents']
95
+ const hasFiles: typeof import('./core/fs/src/index')['hasFiles']
96
+ const hasFunctions: typeof import('./core/fs/src/index')['hasFunctions']
97
+ const hasOwn: typeof import('@vueuse/shared')['hasOwn']
98
+ const hasScript: typeof import('./core/helpers/src/index')['hasScript']
99
+ const hashing: typeof import('../config/hashing')['hashing']
100
+ const headerCase: typeof import('./core/strings/src/index')['headerCase']
101
+ const helpersPath: typeof import('./core/paths/src/index')['helpersPath']
102
+ const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
103
+ const increment: typeof import('../functions/counter')['increment']
104
+ const inject: typeof import('vue')['inject']
105
+ const isAppKeySet: typeof import('./core/helpers/src/index')['isAppKeySet']
106
+ const isBoolean: typeof import('@vueuse/shared')['isBoolean']
107
+ const isClient: typeof import('@vueuse/shared')['isClient']
108
+ const isDark: typeof import('../functions/dark')['isDark']
109
+ const isDef: typeof import('@vueuse/shared')['isDef']
110
+ const isDefined: typeof import('@vueuse/core')['isDefined']
111
+ const isFile: typeof import('./core/fs/src/index')['isFile']
112
+ const isFolder: typeof import('./core/fs/src/index')['isFolder']
113
+ const isFunction: typeof import('@vueuse/shared')['isFunction']
114
+ const isIOS: typeof import('@vueuse/shared')['isIOS']
115
+ const isManifest: typeof import('./core/helpers/src/index')['isManifest']
116
+ const isNumber: typeof import('@vueuse/shared')['isNumber']
117
+ const isObject: typeof import('@vueuse/shared')['isObject']
118
+ const isProjectCreated: typeof import('./core/helpers/src/index')['isProjectCreated']
119
+ const isProxy: typeof import('vue')['isProxy']
120
+ const isReactive: typeof import('vue')['isReactive']
121
+ const isReadonly: typeof import('vue')['isReadonly']
122
+ const isRef: typeof import('vue')['isRef']
123
+ const isString: typeof import('@vueuse/shared')['isString']
124
+ const isWindow: typeof import('@vueuse/shared')['isWindow']
125
+ const it: typeof import('vitest')['it']
126
+ const kebabCase: typeof import('./core/strings/src/index')['kebabCase']
127
+ const langPath: typeof import('./core/paths/src/index')['langPath']
128
+ const library: typeof import('../config/library')['library']
129
+ const libraryEntryPath: typeof import('./core/paths/src/index')['libraryEntryPath']
130
+ const logicAnd: typeof import('@vueuse/math')['logicAnd']
131
+ const logicNot: typeof import('@vueuse/math')['logicNot']
132
+ const logicOr: typeof import('@vueuse/math')['logicOr']
133
+ const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
134
+ const makeHash: typeof import('./core/security/src/hash')['makeHash']
135
+ const markRaw: typeof import('vue')['markRaw']
136
+ const md5Encode: typeof import('./core/security/src/hash')['md5Encode']
137
+ const modulesPath: typeof import('./core/paths/src/index')['modulesPath']
138
+ const nextTick: typeof import('vue')['nextTick']
139
+ const noCase: typeof import('./core/strings/src/index')['noCase']
140
+ const noop: typeof import('@vueuse/shared')['noop']
141
+ const now: typeof import('@vueuse/shared')['now']
142
+ const objectsPath: typeof import('./core/paths/src/index')['objectsPath']
143
+ const onActivated: typeof import('vue')['onActivated']
144
+ const onBeforeMount: typeof import('vue')['onBeforeMount']
145
+ const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
146
+ const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
147
+ const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
148
+ const onDeactivated: typeof import('vue')['onDeactivated']
149
+ const onErrorCaptured: typeof import('vue')['onErrorCaptured']
150
+ const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
151
+ const onLongPress: typeof import('@vueuse/core')['onLongPress']
152
+ const onMounted: typeof import('vue')['onMounted']
153
+ const onRenderTracked: typeof import('vue')['onRenderTracked']
154
+ const onRenderTriggered: typeof import('vue')['onRenderTriggered']
155
+ const onScopeDispose: typeof import('vue')['onScopeDispose']
156
+ const onServerPrefetch: typeof import('vue')['onServerPrefetch']
157
+ const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
158
+ const onUnmounted: typeof import('vue')['onUnmounted']
159
+ const onUpdated: typeof import('vue')['onUpdated']
160
+ const packageJsonPath: typeof import('./core/paths/src/index')['packageJsonPath']
161
+ const pagesPath: typeof import('./core/paths/src/index')['pagesPath']
162
+ const paramCase: typeof import('./core/strings/src/index')['paramCase']
163
+ const pascalCase: typeof import('./core/strings/src/index')['pascalCase']
164
+ const pathCase: typeof import('./core/strings/src/index')['pathCase']
165
+ const pathsPath: typeof import('./core/paths/src/index')['pathsPath']
166
+ const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
167
+ const preferredDark: typeof import('../functions/dark')['preferredDark']
168
+ const projectPath: typeof import('./core/paths/src/index')['projectPath']
169
+ const provide: typeof import('vue')['provide']
170
+ const rand: typeof import('@vueuse/shared')['rand']
171
+ const reactify: typeof import('@vueuse/core')['reactify']
172
+ const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
173
+ const reactive: typeof import('vue')['reactive']
174
+ const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed']
175
+ const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit']
176
+ const reactivePick: typeof import('@vueuse/core')['reactivePick']
177
+ const readJsonFile: typeof import('./core/fs/src/index')['readJsonFile']
178
+ const readTextFile: typeof import('./core/fs/src/index')['readTextFile']
179
+ const readonly: typeof import('vue')['readonly']
180
+ const ref: typeof import('vue')['ref']
181
+ const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
182
+ const refDebounced: typeof import('@vueuse/core')['refDebounced']
183
+ const refDefault: typeof import('@vueuse/core')['refDefault']
184
+ const refThrottled: typeof import('@vueuse/core')['refThrottled']
185
+ const refWithControl: typeof import('@vueuse/core')['refWithControl']
186
+ const resolveComponent: typeof import('vue')['resolveComponent']
187
+ const resolveRef: typeof import('@vueuse/core')['resolveRef']
188
+ const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
189
+ const router: typeof import('../config/router')['router']
190
+ const routerPath: typeof import('./core/paths/src/index')['routerPath']
191
+ const routesPath: typeof import('./core/paths/src/index')['routesPath']
192
+ const runNpmScript: typeof import('./core/helpers/src/index')['runNpmScript']
193
+ const scriptsPath: typeof import('./core/paths/src/index')['scriptsPath']
194
+ const securityPath: typeof import('./core/paths/src/index')['securityPath']
195
+ const sentenceCase: typeof import('./core/strings/src/index')['sentenceCase']
196
+ const setEnvValue: typeof import('./core/helpers/src/index')['setEnvValue']
197
+ const shallowReactive: typeof import('vue')['shallowReactive']
198
+ const shallowReadonly: typeof import('vue')['shallowReadonly']
199
+ const shallowRef: typeof import('vue')['shallowRef']
200
+ const snakeCase: typeof import('./core/strings/src/index')['snakeCase']
201
+ const stacksPath: typeof import('./core/paths/src/index')['stacksPath']
202
+ const stringsPath: typeof import('./core/paths/src/index')['stringsPath']
203
+ const suite: typeof import('vitest')['suite']
204
+ const syncRef: typeof import('@vueuse/core')['syncRef']
205
+ const syncRefs: typeof import('@vueuse/core')['syncRefs']
206
+ const templateRef: typeof import('@vueuse/core')['templateRef']
207
+ const test: typeof import('vitest')['test']
208
+ const throttledRef: typeof import('@vueuse/core')['throttledRef']
209
+ const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
210
+ const timestamp: typeof import('@vueuse/shared')['timestamp']
211
+ const toRaw: typeof import('vue')['toRaw']
212
+ const toReactive: typeof import('@vueuse/core')['toReactive']
213
+ const toRef: typeof import('vue')['toRef']
214
+ const toRefs: typeof import('vue')['toRefs']
215
+ const toggleDark: typeof import('../functions/dark')['toggleDark']
216
+ const triggerRef: typeof import('vue')['triggerRef']
217
+ const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
218
+ const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
219
+ const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
220
+ const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
221
+ const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
222
+ const typesPath: typeof import('./core/paths/src/index')['typesPath']
223
+ const ui: typeof import('../config/ui')['ui']
224
+ const uiPath: typeof import('./core/paths/src/index')['uiPath']
225
+ const unref: typeof import('vue')['unref']
226
+ const unrefElement: typeof import('@vueuse/core')['unrefElement']
227
+ const until: typeof import('@vueuse/core')['until']
228
+ const useAbs: typeof import('@vueuse/math')['useAbs']
229
+ const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
230
+ const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
231
+ const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
232
+ const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
233
+ const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
234
+ const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
235
+ const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
236
+ const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
237
+ const useArraySome: typeof import('@vueuse/core')['useArraySome']
238
+ const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
239
+ const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
240
+ const useAttrs: typeof import('vue')['useAttrs']
241
+ const useAverage: typeof import('@vueuse/math')['useAverage']
242
+ const useBase64: typeof import('@vueuse/core')['useBase64']
243
+ const useBattery: typeof import('@vueuse/core')['useBattery']
244
+ const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
245
+ const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
246
+ const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
247
+ const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
248
+ const useCached: typeof import('@vueuse/core')['useCached']
249
+ const useCeil: typeof import('@vueuse/math')['useCeil']
250
+ const useClamp: typeof import('@vueuse/math')['useClamp']
251
+ const useClipboard: typeof import('@vueuse/core')['useClipboard']
252
+ const useCloned: typeof import('@vueuse/core')['useCloned']
253
+ const useColorMode: typeof import('@vueuse/core')['useColorMode']
254
+ const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
255
+ const useCounter: typeof import('@vueuse/core')['useCounter']
256
+ const useCssModule: typeof import('vue')['useCssModule']
257
+ const useCssVar: typeof import('@vueuse/core')['useCssVar']
258
+ const useCssVars: typeof import('vue')['useCssVars']
259
+ const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement']
260
+ const useCycleList: typeof import('@vueuse/core')['useCycleList']
261
+ const useDark: typeof import('@vueuse/core')['useDark']
262
+ const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
263
+ const useDebounce: typeof import('@vueuse/core')['useDebounce']
264
+ const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
265
+ const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
266
+ const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
267
+ const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
268
+ const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
269
+ const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
270
+ const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
271
+ const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
272
+ const useDraggable: typeof import('@vueuse/core')['useDraggable']
273
+ const useDropZone: typeof import('@vueuse/core')['useDropZone']
274
+ const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
275
+ const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
276
+ const useElementHover: typeof import('@vueuse/core')['useElementHover']
277
+ const useElementSize: typeof import('@vueuse/core')['useElementSize']
278
+ const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
279
+ const useEventBus: typeof import('@vueuse/core')['useEventBus']
280
+ const useEventListener: typeof import('@vueuse/core')['useEventListener']
281
+ const useEventSource: typeof import('@vueuse/core')['useEventSource']
282
+ const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
283
+ const useFavicon: typeof import('@vueuse/core')['useFavicon']
284
+ const useFetch: typeof import('@vueuse/core')['useFetch']
285
+ const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
286
+ const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
287
+ const useFloor: typeof import('@vueuse/math')['useFloor']
288
+ const useFocus: typeof import('@vueuse/core')['useFocus']
289
+ const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
290
+ const useFps: typeof import('@vueuse/core')['useFps']
291
+ const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
292
+ const useGamepad: typeof import('@vueuse/core')['useGamepad']
293
+ const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
294
+ const useHead: typeof import('@vueuse/head')['useHead']
295
+ const useIdle: typeof import('@vueuse/core')['useIdle']
296
+ const useImage: typeof import('@vueuse/core')['useImage']
297
+ const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
298
+ const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
299
+ const useInterval: typeof import('@vueuse/core')['useInterval']
300
+ const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
301
+ const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
302
+ const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
303
+ const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
304
+ const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
305
+ const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
306
+ const useMath: typeof import('@vueuse/math')['useMath']
307
+ const useMax: typeof import('@vueuse/math')['useMax']
308
+ const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
309
+ const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
310
+ const useMemoize: typeof import('@vueuse/core')['useMemoize']
311
+ const useMemory: typeof import('@vueuse/core')['useMemory']
312
+ const useMin: typeof import('@vueuse/math')['useMin']
313
+ const useMounted: typeof import('@vueuse/core')['useMounted']
314
+ const useMouse: typeof import('@vueuse/core')['useMouse']
315
+ const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
316
+ const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
317
+ const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
318
+ const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
319
+ const useNetwork: typeof import('@vueuse/core')['useNetwork']
320
+ const useNow: typeof import('@vueuse/core')['useNow']
321
+ const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
322
+ const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
323
+ const useOnline: typeof import('@vueuse/core')['useOnline']
324
+ const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
325
+ const useParallax: typeof import('@vueuse/core')['useParallax']
326
+ const usePermission: typeof import('@vueuse/core')['usePermission']
327
+ const usePointer: typeof import('@vueuse/core')['usePointer']
328
+ const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
329
+ const usePrecision: typeof import('@vueuse/math')['usePrecision']
330
+ const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
331
+ const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
332
+ const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
333
+ const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
334
+ const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
335
+ const useProjection: typeof import('@vueuse/math')['useProjection']
336
+ const useRafFn: typeof import('@vueuse/core')['useRafFn']
337
+ const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
338
+ const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
339
+ const useRound: typeof import('@vueuse/math')['useRound']
340
+ const useRoute: typeof import('vue-router')['useRoute']
341
+ const useRouter: typeof import('vue-router')['useRouter']
342
+ const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
343
+ const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
344
+ const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
345
+ const useScroll: typeof import('@vueuse/core')['useScroll']
346
+ const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
347
+ const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
348
+ const useShare: typeof import('@vueuse/core')['useShare']
349
+ const useSlots: typeof import('vue')['useSlots']
350
+ const useSorted: typeof import('@vueuse/core')['useSorted']
351
+ const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
352
+ const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
353
+ const useStepper: typeof import('@vueuse/core')['useStepper']
354
+ const useStorage: typeof import('@vueuse/core')['useStorage']
355
+ const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
356
+ const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
357
+ const useSum: typeof import('@vueuse/math')['useSum']
358
+ const useSupported: typeof import('@vueuse/core')['useSupported']
359
+ const useSwipe: typeof import('@vueuse/core')['useSwipe']
360
+ const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
361
+ const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
362
+ const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
363
+ const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
364
+ const useThrottle: typeof import('@vueuse/core')['useThrottle']
365
+ const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
366
+ const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
367
+ const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
368
+ const useTimeout: typeof import('@vueuse/core')['useTimeout']
369
+ const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
370
+ const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
371
+ const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
372
+ const useTitle: typeof import('@vueuse/core')['useTitle']
373
+ const useToFixed: typeof import('@vueuse/math')['useToFixed']
374
+ const useToNumber: typeof import('@vueuse/core')['useToNumber']
375
+ const useToString: typeof import('@vueuse/core')['useToString']
376
+ const useToggle: typeof import('@vueuse/core')['useToggle']
377
+ const useTransition: typeof import('@vueuse/core')['useTransition']
378
+ const useTrunc: typeof import('@vueuse/math')['useTrunc']
379
+ const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
380
+ const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
381
+ const useVModel: typeof import('@vueuse/core')['useVModel']
382
+ const useVModels: typeof import('@vueuse/core')['useVModels']
383
+ const useVibrate: typeof import('@vueuse/core')['useVibrate']
384
+ const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
385
+ const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
386
+ const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
387
+ const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
388
+ const useWebWorker: typeof import('@vueuse/core')['useWebWorker']
389
+ const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn']
390
+ const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
391
+ const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
392
+ const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
393
+ const verifyHash: typeof import('./core/security/src/hash')['verifyHash']
394
+ const vi: typeof import('vitest')['vi']
395
+ const vitest: typeof import('vitest')['vitest']
396
+ const watch: typeof import('vue')['watch']
397
+ const watchArray: typeof import('@vueuse/core')['watchArray']
398
+ const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
399
+ const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
400
+ const watchEffect: typeof import('vue')['watchEffect']
401
+ const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
402
+ const watchOnce: typeof import('@vueuse/core')['watchOnce']
403
+ const watchPausable: typeof import('@vueuse/core')['watchPausable']
404
+ const watchPostEffect: typeof import('vue')['watchPostEffect']
405
+ const watchSyncEffect: typeof import('vue')['watchSyncEffect']
406
+ const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
407
+ const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
408
+ const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
409
+ const whenever: typeof import('@vueuse/core')['whenever']
410
+ const writeJsonFile: typeof import('./core/fs/src/index')['writeJsonFile']
411
+ const writeTextFile: typeof import('./core/fs/src/index')['writeTextFile']
412
+ }
413
+ // for vue template auto import
414
+ import { UnwrapRef } from 'vue'
415
+ declare module '@vue/runtime-core' {
416
+ interface ComponentCustomProperties {
417
+ readonly $$: UnwrapRef<typeof import('vue/macros')['$$']>
418
+ readonly $: UnwrapRef<typeof import('vue/macros')['$']>
419
+ readonly $computed: UnwrapRef<typeof import('vue/macros')['$computed']>
420
+ readonly $customRef: UnwrapRef<typeof import('vue/macros')['$customRef']>
421
+ readonly $ref: UnwrapRef<typeof import('vue/macros')['$ref']>
422
+ readonly $shallowRef: UnwrapRef<typeof import('vue/macros')['$shallowRef']>
423
+ readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
424
+ readonly Collection: UnwrapRef<typeof import('./core/collections/src/index')['Collection']>
425
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
426
+ readonly _dirname: UnwrapRef<typeof import('./core/fs/src/index')['_dirname']>
427
+ readonly actionsPath: UnwrapRef<typeof import('./core/paths/src/index')['actionsPath']>
428
+ readonly afterAll: UnwrapRef<typeof import('vitest')['afterAll']>
429
+ readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
430
+ readonly aliasPath: UnwrapRef<typeof import('./core/paths/src/index')['aliasPath']>
431
+ readonly app: UnwrapRef<typeof import('../config/app')['app']>
432
+ readonly arraysPath: UnwrapRef<typeof import('./core/paths/src/index')['arraysPath']>
433
+ readonly assert: UnwrapRef<typeof import('vitest')['assert']>
434
+ readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
435
+ readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
436
+ readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
437
+ readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
438
+ readonly bcryptEncode: UnwrapRef<typeof import('./core/security/src/hash')['bcryptEncode']>
439
+ readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
440
+ readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
441
+ readonly beforeEach: UnwrapRef<typeof import('vitest')['beforeEach']>
442
+ readonly buildEnginePath: UnwrapRef<typeof import('./core/paths/src/index')['buildEnginePath']>
443
+ readonly buildEntriesPath: UnwrapRef<typeof import('./core/paths/src/index')['buildEntriesPath']>
444
+ readonly buildPath: UnwrapRef<typeof import('./core/paths/src/index')['buildPath']>
445
+ readonly camelCase: UnwrapRef<typeof import('./core/strings/src/index')['camelCase']>
446
+ readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/index')['capitalCase']>
447
+ readonly chai: UnwrapRef<typeof import('vitest')['chai']>
448
+ readonly clamp: UnwrapRef<typeof import('@vueuse/shared')['clamp']>
449
+ readonly cliPath: UnwrapRef<typeof import('./core/paths/src/index')['cliPath']>
450
+ readonly collect: UnwrapRef<typeof import('./core/collections/src/index')['collect']>
451
+ readonly collectionsPath: UnwrapRef<typeof import('./core/paths/src/index')['collectionsPath']>
452
+ readonly componentsPath: UnwrapRef<typeof import('./core/paths/src/index')['componentsPath']>
453
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
454
+ readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
455
+ readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
456
+ readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
457
+ readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
458
+ readonly config: UnwrapRef<typeof import('./core/helpers/src/index')['config']>
459
+ readonly configPath: UnwrapRef<typeof import('./core/paths/src/index')['configPath']>
460
+ readonly constantCase: UnwrapRef<typeof import('./core/strings/src/index')['constantCase']>
461
+ readonly contains: UnwrapRef<typeof import('./core/arrays/src/index')['contains']>
462
+ readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
463
+ readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
464
+ readonly copyFolder: UnwrapRef<typeof import('./core/fs/src/index')['copyFolder']>
465
+ readonly corePath: UnwrapRef<typeof import('./core/paths/src/index')['corePath']>
466
+ readonly count: UnwrapRef<typeof import('../functions/counter')['count']>
467
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
468
+ readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
469
+ readonly createGenericProjection: UnwrapRef<typeof import('@vueuse/math')['createGenericProjection']>
470
+ readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
471
+ readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
472
+ readonly createProjection: UnwrapRef<typeof import('@vueuse/math')['createProjection']>
473
+ readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
474
+ readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
475
+ readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
476
+ readonly customElementsDataPath: UnwrapRef<typeof import('./core/paths/src/index')['customElementsDataPath']>
477
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
478
+ readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
479
+ readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
480
+ readonly decrypt: UnwrapRef<typeof import('./core/security/src/crypt')['decrypt']>
481
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
482
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
483
+ readonly deleteEmptyFolders: UnwrapRef<typeof import('./core/fs/src/index')['deleteEmptyFolders']>
484
+ readonly deleteFiles: UnwrapRef<typeof import('./core/fs/src/index')['deleteFiles']>
485
+ readonly deleteFolder: UnwrapRef<typeof import('./core/fs/src/index')['deleteFolder']>
486
+ readonly deploy: UnwrapRef<typeof import('../config/deploy')['deploy']>
487
+ readonly describe: UnwrapRef<typeof import('vitest')['describe']>
488
+ readonly determineResetPreset: UnwrapRef<typeof import('./core/helpers/src/index')['determineResetPreset']>
489
+ readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
490
+ readonly doesFolderExist: UnwrapRef<typeof import('./core/fs/src/index')['doesFolderExist']>
491
+ readonly dotCase: UnwrapRef<typeof import('./core/strings/src/index')['dotCase']>
492
+ readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
493
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
494
+ readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
495
+ readonly env: UnwrapRef<typeof import('./core/helpers/src/index')['env']>
496
+ readonly examplesPath: UnwrapRef<typeof import('./core/paths/src/index')['examplesPath']>
497
+ readonly expect: UnwrapRef<typeof import('vitest')['expect']>
498
+ readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
499
+ readonly frameworkPath: UnwrapRef<typeof import('./core/paths/src/index')['frameworkPath']>
500
+ readonly fsPath: UnwrapRef<typeof import('./core/paths/src/index')['fsPath']>
501
+ readonly functionsPath: UnwrapRef<typeof import('./core/paths/src/index')['functionsPath']>
502
+ readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
503
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
504
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
505
+ readonly git: UnwrapRef<typeof import('../config/git')['git']>
506
+ readonly h: UnwrapRef<typeof import('vue')['h']>
507
+ readonly hasComponents: UnwrapRef<typeof import('./core/fs/src/index')['hasComponents']>
508
+ readonly hasFiles: UnwrapRef<typeof import('./core/fs/src/index')['hasFiles']>
509
+ readonly hasFunctions: UnwrapRef<typeof import('./core/fs/src/index')['hasFunctions']>
510
+ readonly hasOwn: UnwrapRef<typeof import('@vueuse/shared')['hasOwn']>
511
+ readonly hasScript: UnwrapRef<typeof import('./core/helpers/src/index')['hasScript']>
512
+ readonly hashing: UnwrapRef<typeof import('../config/hashing')['hashing']>
513
+ readonly headerCase: UnwrapRef<typeof import('./core/strings/src/index')['headerCase']>
514
+ readonly helpersPath: UnwrapRef<typeof import('./core/paths/src/index')['helpersPath']>
515
+ readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
516
+ readonly increment: UnwrapRef<typeof import('../functions/counter')['increment']>
517
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
518
+ readonly isAppKeySet: UnwrapRef<typeof import('./core/helpers/src/index')['isAppKeySet']>
519
+ readonly isBoolean: UnwrapRef<typeof import('@vueuse/shared')['isBoolean']>
520
+ readonly isClient: UnwrapRef<typeof import('@vueuse/shared')['isClient']>
521
+ readonly isDark: UnwrapRef<typeof import('../functions/dark')['isDark']>
522
+ readonly isDef: UnwrapRef<typeof import('@vueuse/shared')['isDef']>
523
+ readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
524
+ readonly isFile: UnwrapRef<typeof import('./core/fs/src/index')['isFile']>
525
+ readonly isFolder: UnwrapRef<typeof import('./core/fs/src/index')['isFolder']>
526
+ readonly isFunction: UnwrapRef<typeof import('@vueuse/shared')['isFunction']>
527
+ readonly isIOS: UnwrapRef<typeof import('@vueuse/shared')['isIOS']>
528
+ readonly isManifest: UnwrapRef<typeof import('./core/helpers/src/index')['isManifest']>
529
+ readonly isNumber: UnwrapRef<typeof import('@vueuse/shared')['isNumber']>
530
+ readonly isObject: UnwrapRef<typeof import('@vueuse/shared')['isObject']>
531
+ readonly isProjectCreated: UnwrapRef<typeof import('./core/helpers/src/index')['isProjectCreated']>
532
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
533
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
534
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
535
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
536
+ readonly isString: UnwrapRef<typeof import('@vueuse/shared')['isString']>
537
+ readonly isWindow: UnwrapRef<typeof import('@vueuse/shared')['isWindow']>
538
+ readonly it: UnwrapRef<typeof import('vitest')['it']>
539
+ readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/index')['kebabCase']>
540
+ readonly langPath: UnwrapRef<typeof import('./core/paths/src/index')['langPath']>
541
+ readonly library: UnwrapRef<typeof import('../config/library')['library']>
542
+ readonly libraryEntryPath: UnwrapRef<typeof import('./core/paths/src/index')['libraryEntryPath']>
543
+ readonly logicAnd: UnwrapRef<typeof import('@vueuse/math')['logicAnd']>
544
+ readonly logicNot: UnwrapRef<typeof import('@vueuse/math')['logicNot']>
545
+ readonly logicOr: UnwrapRef<typeof import('@vueuse/math')['logicOr']>
546
+ readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
547
+ readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
548
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
549
+ readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
550
+ readonly modulesPath: UnwrapRef<typeof import('./core/paths/src/index')['modulesPath']>
551
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
552
+ readonly noCase: UnwrapRef<typeof import('./core/strings/src/index')['noCase']>
553
+ readonly noop: UnwrapRef<typeof import('@vueuse/shared')['noop']>
554
+ readonly now: UnwrapRef<typeof import('@vueuse/shared')['now']>
555
+ readonly objectsPath: UnwrapRef<typeof import('./core/paths/src/index')['objectsPath']>
556
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
557
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
558
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
559
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
560
+ readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
561
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
562
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
563
+ readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
564
+ readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
565
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
566
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
567
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
568
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
569
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
570
+ readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
571
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
572
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
573
+ readonly packageJsonPath: UnwrapRef<typeof import('./core/paths/src/index')['packageJsonPath']>
574
+ readonly pagesPath: UnwrapRef<typeof import('./core/paths/src/index')['pagesPath']>
575
+ readonly paramCase: UnwrapRef<typeof import('./core/strings/src/index')['paramCase']>
576
+ readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/index')['pascalCase']>
577
+ readonly pathCase: UnwrapRef<typeof import('./core/strings/src/index')['pathCase']>
578
+ readonly pathsPath: UnwrapRef<typeof import('./core/paths/src/index')['pathsPath']>
579
+ readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
580
+ readonly preferredDark: UnwrapRef<typeof import('../functions/dark')['preferredDark']>
581
+ readonly projectPath: UnwrapRef<typeof import('./core/paths/src/index')['projectPath']>
582
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
583
+ readonly rand: UnwrapRef<typeof import('@vueuse/shared')['rand']>
584
+ readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
585
+ readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
586
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
587
+ readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
588
+ readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
589
+ readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
590
+ readonly readJsonFile: UnwrapRef<typeof import('./core/fs/src/index')['readJsonFile']>
591
+ readonly readTextFile: UnwrapRef<typeof import('./core/fs/src/index')['readTextFile']>
592
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
593
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
594
+ readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
595
+ readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
596
+ readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
597
+ readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
598
+ readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
599
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
600
+ readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
601
+ readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
602
+ readonly router: UnwrapRef<typeof import('../config/router')['router']>
603
+ readonly routerPath: UnwrapRef<typeof import('./core/paths/src/index')['routerPath']>
604
+ readonly routesPath: UnwrapRef<typeof import('./core/paths/src/index')['routesPath']>
605
+ readonly runNpmScript: UnwrapRef<typeof import('./core/helpers/src/index')['runNpmScript']>
606
+ readonly scriptsPath: UnwrapRef<typeof import('./core/paths/src/index')['scriptsPath']>
607
+ readonly securityPath: UnwrapRef<typeof import('./core/paths/src/index')['securityPath']>
608
+ readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/index')['sentenceCase']>
609
+ readonly setEnvValue: UnwrapRef<typeof import('./core/helpers/src/index')['setEnvValue']>
610
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
611
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
612
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
613
+ readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/index')['snakeCase']>
614
+ readonly stacksPath: UnwrapRef<typeof import('./core/paths/src/index')['stacksPath']>
615
+ readonly stringsPath: UnwrapRef<typeof import('./core/paths/src/index')['stringsPath']>
616
+ readonly suite: UnwrapRef<typeof import('vitest')['suite']>
617
+ readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
618
+ readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
619
+ readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
620
+ readonly test: UnwrapRef<typeof import('vitest')['test']>
621
+ readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
622
+ readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
623
+ readonly timestamp: UnwrapRef<typeof import('@vueuse/shared')['timestamp']>
624
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
625
+ readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
626
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
627
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
628
+ readonly toggleDark: UnwrapRef<typeof import('../functions/dark')['toggleDark']>
629
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
630
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
631
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
632
+ readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
633
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
634
+ readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
635
+ readonly typesPath: UnwrapRef<typeof import('./core/paths/src/index')['typesPath']>
636
+ readonly ui: UnwrapRef<typeof import('../config/ui')['ui']>
637
+ readonly uiPath: UnwrapRef<typeof import('./core/paths/src/index')['uiPath']>
638
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
639
+ readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
640
+ readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
641
+ readonly useAbs: UnwrapRef<typeof import('@vueuse/math')['useAbs']>
642
+ readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
643
+ readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
644
+ readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
645
+ readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
646
+ readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
647
+ readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
648
+ readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
649
+ readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
650
+ readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
651
+ readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
652
+ readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
653
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
654
+ readonly useAverage: UnwrapRef<typeof import('@vueuse/math')['useAverage']>
655
+ readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
656
+ readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
657
+ readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
658
+ readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
659
+ readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
660
+ readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
661
+ readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
662
+ readonly useCeil: UnwrapRef<typeof import('@vueuse/math')['useCeil']>
663
+ readonly useClamp: UnwrapRef<typeof import('@vueuse/math')['useClamp']>
664
+ readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
665
+ readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
666
+ readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
667
+ readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
668
+ readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
669
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
670
+ readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
671
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
672
+ readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
673
+ readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
674
+ readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
675
+ readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
676
+ readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
677
+ readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
678
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
679
+ readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
680
+ readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
681
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
682
+ readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
683
+ readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
684
+ readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
685
+ readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
686
+ readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
687
+ readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
688
+ readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
689
+ readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
690
+ readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
691
+ readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
692
+ readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
693
+ readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
694
+ readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
695
+ readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
696
+ readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
697
+ readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
698
+ readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
699
+ readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
700
+ readonly useFloor: UnwrapRef<typeof import('@vueuse/math')['useFloor']>
701
+ readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
702
+ readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
703
+ readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
704
+ readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
705
+ readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
706
+ readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
707
+ readonly useHead: UnwrapRef<typeof import('@vueuse/head')['useHead']>
708
+ readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
709
+ readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
710
+ readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
711
+ readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
712
+ readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
713
+ readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
714
+ readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
715
+ readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
716
+ readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
717
+ readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
718
+ readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
719
+ readonly useMath: UnwrapRef<typeof import('@vueuse/math')['useMath']>
720
+ readonly useMax: UnwrapRef<typeof import('@vueuse/math')['useMax']>
721
+ readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
722
+ readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
723
+ readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
724
+ readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
725
+ readonly useMin: UnwrapRef<typeof import('@vueuse/math')['useMin']>
726
+ readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
727
+ readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
728
+ readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
729
+ readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
730
+ readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
731
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
732
+ readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
733
+ readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
734
+ readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
735
+ readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
736
+ readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
737
+ readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
738
+ readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
739
+ readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
740
+ readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
741
+ readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
742
+ readonly usePrecision: UnwrapRef<typeof import('@vueuse/math')['usePrecision']>
743
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
744
+ readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
745
+ readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
746
+ readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
747
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
748
+ readonly useProjection: UnwrapRef<typeof import('@vueuse/math')['useProjection']>
749
+ readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
750
+ readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
751
+ readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
752
+ readonly useRound: UnwrapRef<typeof import('@vueuse/math')['useRound']>
753
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
754
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
755
+ readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
756
+ readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
757
+ readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
758
+ readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
759
+ readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
760
+ readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
761
+ readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
762
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
763
+ readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
764
+ readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
765
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
766
+ readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
767
+ readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
768
+ readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
769
+ readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
770
+ readonly useSum: UnwrapRef<typeof import('@vueuse/math')['useSum']>
771
+ readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
772
+ readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
773
+ readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
774
+ readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
775
+ readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
776
+ readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
777
+ readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
778
+ readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
779
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
780
+ readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
781
+ readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
782
+ readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
783
+ readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
784
+ readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
785
+ readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
786
+ readonly useToFixed: UnwrapRef<typeof import('@vueuse/math')['useToFixed']>
787
+ readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
788
+ readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
789
+ readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
790
+ readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
791
+ readonly useTrunc: UnwrapRef<typeof import('@vueuse/math')['useTrunc']>
792
+ readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
793
+ readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
794
+ readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
795
+ readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
796
+ readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
797
+ readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
798
+ readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
799
+ readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
800
+ readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
801
+ readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
802
+ readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
803
+ readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
804
+ readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
805
+ readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
806
+ readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
807
+ readonly vi: UnwrapRef<typeof import('vitest')['vi']>
808
+ readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
809
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
810
+ readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
811
+ readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
812
+ readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
813
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
814
+ readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
815
+ readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
816
+ readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
817
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
818
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
819
+ readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
820
+ readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
821
+ readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
822
+ readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
823
+ readonly writeJsonFile: UnwrapRef<typeof import('./core/fs/src/index')['writeJsonFile']>
824
+ readonly writeTextFile: UnwrapRef<typeof import('./core/fs/src/index')['writeTextFile']>
825
+ }
826
+ }