stacks 0.51.0 → 0.52.1

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 (700) hide show
  1. package/README.md +20 -17
  2. package/api/nitro.config.ts +17 -0
  3. package/api/package.json +42 -0
  4. package/api/routes/index.ts +1 -0
  5. package/api/serverless.yml +11 -0
  6. package/auto-imports.d.ts +1606 -667
  7. package/components/vue/main.ts +1 -0
  8. package/components/vue/package.json +1 -1
  9. package/components/web/package.json +1 -1
  10. package/components.d.ts +4 -2
  11. package/core/actions/README.md +1 -1
  12. package/core/actions/build.config.ts +15 -0
  13. package/core/actions/node_modules/.bin/markdown-it +2 -2
  14. package/core/actions/node_modules/.bin/unbuild +17 -0
  15. package/core/actions/package.json +226 -13
  16. package/core/actions/src/build/core.ts +6 -0
  17. package/core/actions/src/clean.ts +12 -25
  18. package/core/actions/src/deploy/domains.ts +8 -0
  19. package/core/actions/src/deploy.ts +8 -0
  20. package/core/actions/src/dev/docs.ts +5 -0
  21. package/core/actions/src/{dev.ts → dev/index.ts} +0 -25
  22. package/core/actions/src/fresh.ts +1 -1
  23. package/core/actions/src/{generate-component-meta.ts → generate/component-meta.ts} +1 -1
  24. package/core/actions/src/{generate-ide-helpers.ts → generate/ide-helpers.ts} +2 -1
  25. package/core/actions/src/{generate.ts → generate/index.ts} +18 -3
  26. package/core/actions/src/{generate-lib-entries.ts → generate/lib-entries.ts} +1 -1
  27. package/core/actions/src/{generate-package-jsons.ts → generate/package-jsons.ts} +1 -1
  28. package/core/actions/src/{generate-vscode-custom-data.ts → generate/vscode-custom-data.ts} +1 -1
  29. package/core/actions/src/{generate-vue-compat.ts → generate/vue-compat.ts} +1 -1
  30. package/core/actions/src/helpers/lib-entries.ts +7 -6
  31. package/core/actions/src/helpers/package-json.ts +10 -11
  32. package/core/actions/src/helpers/utils.ts +20 -25
  33. package/core/actions/src/helpers/vscode-custom-data.ts +1 -1
  34. package/core/actions/src/key-generate.ts +2 -2
  35. package/core/actions/src/make.ts +63 -19
  36. package/core/actions/src/migrate.ts +3 -0
  37. package/core/actions/src/preinstall.ts +2 -2
  38. package/core/actions/src/release.ts +5 -4
  39. package/core/actions/src/seed.ts +3 -0
  40. package/core/actions/src/tinker.ts +10 -0
  41. package/core/actions/src/upgrade/framework.ts +29 -0
  42. package/core/actions/src/upgrade/index.ts +27 -0
  43. package/core/actions/src/upgrade/node.ts +4 -0
  44. package/core/actions/src/upgrade/package-manager.ts +4 -0
  45. package/core/actions/src/upgrade.ts +75 -0
  46. package/core/ai/README.md +1 -1
  47. package/core/ai/build.config.ts +15 -0
  48. package/core/ai/package.json +15 -12
  49. package/core/alias/README.md +1 -1
  50. package/core/alias/build.config.ts +15 -0
  51. package/core/alias/package.json +11 -12
  52. package/core/alias/src/index.ts +27 -10
  53. package/core/{drivers → analytics}/README.md +18 -9
  54. package/core/analytics/build.config.ts +15 -0
  55. package/core/analytics/package.json +64 -0
  56. package/core/arrays/README.md +1 -1
  57. package/core/arrays/build.config.ts +15 -0
  58. package/core/arrays/package.json +13 -12
  59. package/core/arrays/src/index.ts +4 -0
  60. package/core/auth/README.md +1 -1
  61. package/core/auth/build.config.ts +15 -0
  62. package/core/auth/package.json +11 -12
  63. package/core/auth/src/index.ts +1 -3
  64. package/{buddy → core/buddy}/README.md +20 -17
  65. package/core/buddy/build.config.ts +16 -0
  66. package/core/buddy/package.json +127 -0
  67. package/core/buddy/src/cli.ts +96 -0
  68. package/{buddy → core/buddy}/src/commands/add.ts +6 -11
  69. package/{buddy → core/buddy}/src/commands/build.ts +22 -31
  70. package/{buddy → core/buddy}/src/commands/changelog.ts +5 -6
  71. package/core/buddy/src/commands/clean.ts +29 -0
  72. package/{buddy → core/buddy}/src/commands/commit.ts +0 -2
  73. package/{buddy → core/buddy}/src/commands/create.ts +4 -6
  74. package/core/buddy/src/commands/deploy.ts +30 -0
  75. package/{buddy → core/buddy}/src/commands/dev.ts +44 -27
  76. package/{buddy → core/buddy}/src/commands/example.ts +8 -12
  77. package/{buddy → core/buddy}/src/commands/fresh.ts +3 -5
  78. package/{buddy → core/buddy}/src/commands/generate.ts +19 -22
  79. package/{buddy → core/buddy}/src/commands/index.ts +7 -1
  80. package/core/buddy/src/commands/inspire.ts +25 -0
  81. package/{buddy → core/buddy}/src/commands/key.ts +6 -7
  82. package/{buddy → core/buddy}/src/commands/lint.ts +10 -11
  83. package/{buddy → core/buddy}/src/commands/make.ts +55 -47
  84. package/core/buddy/src/commands/migrate.ts +32 -0
  85. package/{buddy → core/buddy}/src/commands/onboarding.ts +6 -5
  86. package/{buddy → core/buddy}/src/commands/preinstall.ts +0 -2
  87. package/{buddy → core/buddy}/src/commands/prepublish.ts +0 -2
  88. package/{buddy → core/buddy}/src/commands/release.ts +4 -12
  89. package/core/buddy/src/commands/seed.ts +31 -0
  90. package/{buddy → core/buddy}/src/commands/setting.ts +6 -5
  91. package/{buddy → core/buddy}/src/commands/setup.ts +0 -3
  92. package/{buddy → core/buddy}/src/commands/test.ts +15 -15
  93. package/core/buddy/src/commands/tinker.ts +29 -0
  94. package/{buddy → core/buddy}/src/commands/types.ts +0 -3
  95. package/core/buddy/src/commands/upgrade.ts +141 -0
  96. package/core/buddy/src/commands/version.ts +40 -0
  97. package/{buddy → core/buddy}/src/index.ts +2 -1
  98. package/core/build/README.md +1 -1
  99. package/core/build/build.config.ts +15 -0
  100. package/core/build/node_modules/.bin/unbuild +4 -4
  101. package/core/build/node_modules/.bin/vite +4 -4
  102. package/core/build/node_modules/.bin/vite-ssg +4 -4
  103. package/core/build/node_modules/.bin/vue-docgen-web-types +4 -4
  104. package/core/build/package.json +26 -24
  105. package/core/build/src/desktop.ts +141 -11
  106. package/core/build/src/pages.ts +1 -0
  107. package/core/build/src/stacks.ts +18 -22
  108. package/core/build/src/vue-components.ts +6 -4
  109. package/core/build/web-types.config.cjs +1 -0
  110. package/core/cache/README.md +1 -1
  111. package/core/cache/build.config.ts +15 -0
  112. package/core/cache/package.json +30 -15
  113. package/core/cache/src/drivers/dynamodb.ts +119 -117
  114. package/core/cache/src/drivers/memcached.ts +15 -14
  115. package/core/cache/src/drivers/redis.ts +7 -4
  116. package/core/cache/tests/Redis.test.ts +1 -0
  117. package/core/chat/README.md +2 -1
  118. package/core/chat/build.config.ts +15 -0
  119. package/core/chat/package.json +16 -16
  120. package/core/chat/src/drivers/slack.ts +20 -18
  121. package/core/chat/src/drivers/teams.ts +24 -0
  122. package/core/chat/src/index.ts +1 -0
  123. package/core/cli/README.md +2 -2
  124. package/core/cli/build.config.ts +14 -0
  125. package/core/cli/package.json +16 -14
  126. package/core/cli/src/actions/install.ts +21 -3
  127. package/core/cli/src/command.ts +2 -7
  128. package/core/cli/src/console.ts +2 -3
  129. package/core/cli/src/helpers.ts +6 -1
  130. package/core/cli/src/index.ts +1 -0
  131. package/core/cli/src/parse.ts +99 -0
  132. package/core/cli/src/run.ts +33 -19
  133. package/core/cloud/README.md +1 -1
  134. package/core/cloud/build.config.ts +15 -0
  135. package/core/cloud/package.json +11 -12
  136. package/core/collections/README.md +1 -1
  137. package/core/collections/build.config.ts +15 -0
  138. package/core/collections/package.json +12 -13
  139. package/core/config/README.md +28 -10
  140. package/core/config/build.config.ts +40 -4
  141. package/core/config/package.json +20 -19
  142. package/core/config/src/defaults.ts +20 -0
  143. package/core/config/src/index.ts +3 -19
  144. package/core/config/src/stacks.ts +49 -0
  145. package/core/database/README.md +1 -1
  146. package/core/database/build.config.ts +17 -0
  147. package/core/database/package.json +19 -14
  148. package/core/database/src/factory/index.ts +16 -62
  149. package/core/database/src/migrations/index.ts +146 -3
  150. package/core/database/src/seeder/index.ts +75 -6
  151. package/core/datetime/README.md +1 -1
  152. package/core/datetime/build.config.ts +14 -0
  153. package/core/datetime/package.json +11 -12
  154. package/core/datetime/src/index.ts +1 -1
  155. package/core/desktop/README.md +1 -1
  156. package/core/desktop/build.config.ts +15 -0
  157. package/core/desktop/node_modules/.bin/tauri +4 -4
  158. package/core/desktop/package.json +15 -16
  159. package/core/development/README.md +27 -0
  160. package/core/development/build.config.ts +15 -0
  161. package/core/development/node_modules/.bin/tsc +17 -0
  162. package/core/development/node_modules/.bin/tsserver +17 -0
  163. package/core/development/node_modules/.bin/tsx +17 -0
  164. package/core/development/node_modules/.bin/unbuild +17 -0
  165. package/core/{x-ray → development}/package.json +30 -31
  166. package/core/development/src/index.ts +2 -0
  167. package/core/docs/README.md +1 -1
  168. package/core/docs/build.config.ts +16 -0
  169. package/core/docs/node_modules/.bin/vitepress +4 -4
  170. package/core/docs/package.json +14 -13
  171. package/core/docs/src/index.ts +3 -2
  172. package/core/domains/README.md +1 -1
  173. package/core/domains/build.config.ts +15 -0
  174. package/core/domains/package.json +11 -11
  175. package/core/email/README.md +1 -1
  176. package/core/email/build.config.ts +14 -0
  177. package/core/email/node_modules/.bin/maizzle +4 -4
  178. package/core/email/package.json +29 -24
  179. package/core/email/src/actions/send.ts +1 -1
  180. package/core/email/src/drivers/emailjs.ts +10 -8
  181. package/core/email/src/drivers/mailgun.ts +8 -6
  182. package/core/email/src/drivers/mailjet.ts +8 -5
  183. package/core/email/src/drivers/mandrill.ts +6 -4
  184. package/core/email/src/drivers/netcore.ts +6 -4
  185. package/core/email/src/drivers/nodemailer.ts +10 -8
  186. package/core/email/src/drivers/postmark.ts +6 -4
  187. package/core/email/src/drivers/sendgrid.ts +7 -5
  188. package/core/email/src/drivers/ses.ts +18 -15
  189. package/core/email/src/tailwind.config.ts +1 -1
  190. package/core/error-handling/README.md +1 -1
  191. package/core/error-handling/build.config.ts +14 -0
  192. package/core/error-handling/package.json +14 -12
  193. package/core/error-handling/src/index.ts +1 -3
  194. package/core/events/README.md +1 -1
  195. package/core/events/package.json +12 -12
  196. package/core/events/src/index.ts +3 -2
  197. package/core/faker/README.md +62 -0
  198. package/core/faker/build.config.ts +15 -0
  199. package/{pages → core/faker}/package.json +22 -22
  200. package/core/faker/src/index.ts +1 -0
  201. package/core/git/README.md +1 -1
  202. package/core/git/build.config.ts +15 -0
  203. package/core/git/node_modules/.bin/bumpp +4 -4
  204. package/core/git/node_modules/.bin/changelogen +4 -4
  205. package/core/git/node_modules/.bin/commitizen +2 -2
  206. package/core/git/node_modules/.bin/cz +2 -2
  207. package/core/git/node_modules/.bin/giget +4 -4
  208. package/core/git/node_modules/.bin/git-cz +2 -2
  209. package/core/git/node_modules/.bin/simple-git-hooks +2 -2
  210. package/core/git/package.json +15 -16
  211. package/core/health/README.md +1 -1
  212. package/core/health/build.config.ts +15 -0
  213. package/core/health/package.json +11 -12
  214. package/core/lint/README.md +1 -1
  215. package/core/lint/build.config.ts +15 -0
  216. package/core/lint/node_modules/.bin/eslint +4 -4
  217. package/core/lint/node_modules/.bin/lint-staged +4 -4
  218. package/core/lint/node_modules/.bin/publint +17 -0
  219. package/core/lint/package.json +16 -16
  220. package/core/lint/src/index.ts +1 -1
  221. package/core/logging/README.md +1 -1
  222. package/core/logging/build.config.ts +15 -0
  223. package/core/logging/node_modules/.bin/tsc +4 -4
  224. package/core/logging/node_modules/.bin/tsserver +4 -4
  225. package/core/logging/node_modules/.bin/tsx +17 -0
  226. package/core/logging/node_modules/.bin/unbuild +17 -0
  227. package/core/logging/package.json +20 -12
  228. package/core/logging/src/index.ts +4 -8
  229. package/core/modules/README.md +1 -1
  230. package/core/modules/build.config.ts +15 -0
  231. package/core/modules/package.json +19 -11
  232. package/core/notifications/README.md +1 -1
  233. package/core/notifications/build.config.ts +0 -1
  234. package/core/notifications/node_modules/.bin/maizzle +4 -4
  235. package/core/notifications/package.json +33 -33
  236. package/core/notifications/src/index.ts +16 -13
  237. package/core/notifications/src/tailwind.config.ts +3 -3
  238. package/core/notifications/src/utils/config.ts +2 -2
  239. package/core/notifications/tests/email/Mailgun.test.ts +1 -1
  240. package/core/objects/README.md +1 -1
  241. package/core/objects/build.config.ts +15 -0
  242. package/core/objects/package.json +14 -13
  243. package/core/{cloud/dist/actions → orm}/README.md +14 -19
  244. package/core/orm/build.config.ts +15 -0
  245. package/core/{drivers → orm}/package.json +18 -19
  246. package/core/orm/src/index.ts +43 -0
  247. package/core/pages/build.config.ts +15 -0
  248. package/core/pages/package.json +16 -14
  249. package/core/pages/src/index.ts +25 -5
  250. package/core/path/README.md +1 -1
  251. package/core/{tables → path}/build.config.ts +3 -5
  252. package/core/path/package.json +13 -11
  253. package/core/path/src/index.ts +55 -13
  254. package/core/payments/README.md +1 -1
  255. package/core/payments/build.config.ts +15 -0
  256. package/core/payments/package.json +18 -12
  257. package/core/payments/src/drivers/stripe.ts +136 -0
  258. package/core/payments/src/index.ts +1 -1
  259. package/core/push/README.md +1 -1
  260. package/core/push/build.config.ts +15 -0
  261. package/core/push/package.json +13 -16
  262. package/core/push/src/drivers/expo.ts +18 -16
  263. package/core/push/src/drivers/fcm.ts +18 -16
  264. package/core/{x-ray → query-builder}/README.md +14 -21
  265. package/core/query-builder/build.config.ts +15 -0
  266. package/core/query-builder/package.json +56 -0
  267. package/core/query-builder/src/index.ts +1 -0
  268. package/core/query-builder/src/kysely.ts +37 -0
  269. package/core/queue/README.md +1 -1
  270. package/core/queue/build.config.ts +15 -0
  271. package/core/queue/package.json +11 -12
  272. package/core/realtime/README.md +1 -1
  273. package/core/realtime/build.config.ts +15 -0
  274. package/core/realtime/package.json +11 -12
  275. package/core/router/README.md +1 -1
  276. package/core/router/build.config.ts +15 -0
  277. package/core/router/package.json +12 -13
  278. package/core/router/src/index.ts +116 -12
  279. package/core/scheduler/README.md +137 -0
  280. package/core/scheduler/build.config.ts +15 -0
  281. package/core/{dashboard → scheduler}/package.json +20 -21
  282. package/core/scheduler/src/index.ts +120 -0
  283. package/core/search-engine/README.md +1 -1
  284. package/core/search-engine/build.config.ts +14 -0
  285. package/core/search-engine/package.json +16 -15
  286. package/core/search-engine/src/drivers/meilisearch.ts +3 -1
  287. package/core/search-engine/src/index.ts +5 -24
  288. package/core/security/README.md +1 -1
  289. package/core/security/build.config.ts +15 -0
  290. package/core/security/package.json +12 -13
  291. package/core/server/README.md +1 -1
  292. package/core/server/build.config.ts +15 -0
  293. package/core/server/node_modules/.bin/nitro +4 -4
  294. package/core/server/node_modules/.bin/nitropack +4 -4
  295. package/core/server/node_modules/.bin/vite +4 -4
  296. package/core/server/package.json +13 -13
  297. package/core/server/src/index.ts +1 -1
  298. package/core/server/src/nitro.config.ts +1 -0
  299. package/core/signals/README.md +105 -0
  300. package/core/signals/build.config.ts +15 -0
  301. package/core/signals/package.json +55 -0
  302. package/core/signals/src/index.ts +1 -0
  303. package/core/signals/tests/example.test.ts +7 -0
  304. package/core/{cloud/src/actions → slug}/README.md +11 -5
  305. package/core/slug/build.config.ts +15 -0
  306. package/core/slug/package.json +55 -0
  307. package/core/slug/src/index.ts +56 -0
  308. package/core/slug/tests/example.test.ts +7 -0
  309. package/core/sms/README.md +2 -1
  310. package/core/sms/build.config.ts +15 -0
  311. package/core/sms/package.json +22 -22
  312. package/core/sms/src/drivers/gupshup.ts +3 -3
  313. package/core/sms/src/drivers/nexmo.ts +4 -4
  314. package/core/sms/src/drivers/plivo.ts +4 -4
  315. package/core/sms/src/drivers/sms77.ts +3 -3
  316. package/core/sms/src/drivers/sns.ts +4 -4
  317. package/core/sms/src/drivers/telnyx.ts +4 -4
  318. package/core/sms/src/drivers/termii.ts +3 -3
  319. package/core/sms/src/drivers/twilio.ts +4 -4
  320. package/core/storage/README.md +1 -1
  321. package/core/storage/build.config.ts +15 -0
  322. package/core/storage/package.json +14 -14
  323. package/core/storage/src/index.ts +15 -4
  324. package/core/strings/README.md +7 -6
  325. package/core/strings/package.json +12 -12
  326. package/core/strings/src/case.ts +1 -0
  327. package/core/strings/src/index.ts +0 -1
  328. package/core/strings/src/pluralize.ts +5 -1
  329. package/core/strings/src/utils.ts +48 -6
  330. package/core/testing/README.md +1 -1
  331. package/core/testing/build.config.ts +15 -0
  332. package/core/testing/node_modules/.bin/playwright +4 -4
  333. package/core/testing/node_modules/.bin/tsc +4 -4
  334. package/core/testing/node_modules/.bin/tsserver +4 -4
  335. package/core/testing/node_modules/.bin/unbuild +17 -0
  336. package/core/testing/node_modules/.bin/vitest +4 -4
  337. package/core/testing/package.json +16 -15
  338. package/core/testing/src/index.ts +1 -0
  339. package/core/tinker/README.md +61 -0
  340. package/core/tinker/node_modules/.bin/tsx +17 -0
  341. package/core/tinker/package.json +45 -0
  342. package/core/tinker/tinker.js +2 -0
  343. package/core/types/README.md +1 -1
  344. package/core/types/build.config.ts +15 -0
  345. package/core/types/node_modules/.bin/markdown-it +2 -2
  346. package/core/types/node_modules/.bin/vite +17 -0
  347. package/core/types/node_modules/.bin/vite-ssg +4 -4
  348. package/core/types/node_modules/.bin/vitepress +4 -4
  349. package/core/types/package.json +33 -24
  350. package/core/types/src/app.ts +4 -16
  351. package/core/types/src/auto-imports.ts +1 -3
  352. package/core/types/src/build.ts +1 -1
  353. package/core/types/src/cache.ts +78 -0
  354. package/core/types/src/cdn.ts +15 -0
  355. package/core/types/src/cli.ts +85 -63
  356. package/core/types/src/components.ts +1 -3
  357. package/core/types/src/cron-jobs.ts +17 -0
  358. package/core/types/src/database.ts +39 -2
  359. package/core/types/src/deploy.ts +8 -11
  360. package/core/types/src/dns.ts +49 -0
  361. package/core/types/src/docs.ts +2 -0
  362. package/core/types/src/events.ts +1 -1
  363. package/core/types/src/fs.ts +8 -0
  364. package/core/types/src/git.ts +1 -1
  365. package/core/types/src/index.ts +10 -2
  366. package/core/types/src/library.ts +6 -1
  367. package/core/types/src/model.ts +46 -0
  368. package/core/types/src/notifications.ts +151 -117
  369. package/core/types/src/payments.ts +63 -0
  370. package/core/types/src/reactivity.ts +1 -3
  371. package/core/types/src/router.ts +52 -0
  372. package/core/types/src/search-engine.ts +56 -8
  373. package/core/types/src/ssg.ts +1 -1
  374. package/core/types/src/stacks.ts +203 -0
  375. package/core/types/src/ui.ts +1 -1
  376. package/core/ui/README.md +1 -1
  377. package/core/ui/build.config.ts +15 -0
  378. package/core/ui/node_modules/.bin/vue-tsc +4 -4
  379. package/core/ui/package.json +23 -20
  380. package/core/ui/src/index.ts +6 -3
  381. package/core/ui/src/unocss.config.ts +47 -0
  382. package/core/ui/src/unocss.ts +3 -3
  383. package/core/utils/build.config.ts +15 -0
  384. package/core/utils/node_modules/.bin/rimraf +4 -4
  385. package/core/utils/node_modules/.bin/semver +17 -0
  386. package/core/utils/package.json +45 -21
  387. package/core/utils/src/base.ts +15 -9
  388. package/core/utils/src/config.ts +96 -0
  389. package/core/utils/src/currency.ts +26 -0
  390. package/core/utils/src/debounce.ts +1 -0
  391. package/core/utils/src/delete.ts +3 -0
  392. package/core/utils/src/guards.ts +3 -3
  393. package/core/utils/src/helpers.ts +31 -23
  394. package/core/utils/src/index.ts +11 -10
  395. package/core/utils/src/math.ts +30 -0
  396. package/core/utils/src/promise.ts +1 -1
  397. package/core/utils/src/throttle.ts +42 -0
  398. package/core/utils/src/vendors.ts +221 -0
  399. package/core/utils/src/versions.ts +1 -0
  400. package/core/validation/README.md +1 -1
  401. package/core/validation/build.config.ts +15 -0
  402. package/core/validation/package.json +13 -14
  403. package/core/validation/src/index.ts +2 -3
  404. package/core/{strings/src/validation.ts → validation/src/is.ts} +83 -8
  405. package/core/validation/src/validate.ts +29 -0
  406. package/docs/.vitepress/config.ts +9 -0
  407. package/docs/README.md +13 -0
  408. package/docs/node_modules/.bin/rimraf +17 -0
  409. package/docs/node_modules/.bin/vitepress +17 -0
  410. package/docs/package.json +46 -0
  411. package/package.json +121 -34
  412. package/pages/desktop/.gitignore +24 -0
  413. package/pages/desktop/README.md +73 -0
  414. package/{core/x-ray → pages/desktop}/index.html +1 -1
  415. package/pages/desktop/package.json +26 -0
  416. package/pages/desktop/public/favicon.svg +1 -0
  417. package/pages/desktop/src/.gitignore +3 -0
  418. package/pages/desktop/src/Cargo.lock +3599 -0
  419. package/pages/desktop/src/Cargo.toml +28 -0
  420. package/pages/desktop/src/build.rs +3 -0
  421. package/pages/desktop/src/icons/128x128.png +0 -0
  422. package/pages/desktop/src/icons/128x128@2x.png +0 -0
  423. package/pages/desktop/src/icons/32x32.png +0 -0
  424. package/pages/desktop/src/icons/Square107x107Logo.png +0 -0
  425. package/pages/desktop/src/icons/Square142x142Logo.png +0 -0
  426. package/pages/desktop/src/icons/Square150x150Logo.png +0 -0
  427. package/pages/desktop/src/icons/Square284x284Logo.png +0 -0
  428. package/pages/desktop/src/icons/Square30x30Logo.png +0 -0
  429. package/pages/desktop/src/icons/Square310x310Logo.png +0 -0
  430. package/pages/desktop/src/icons/Square44x44Logo.png +0 -0
  431. package/pages/desktop/src/icons/Square71x71Logo.png +0 -0
  432. package/pages/desktop/src/icons/Square89x89Logo.png +0 -0
  433. package/pages/desktop/src/icons/StoreLogo.png +0 -0
  434. package/pages/desktop/src/icons/icon.icns +0 -0
  435. package/pages/desktop/src/icons/icon.ico +0 -0
  436. package/pages/desktop/src/icons/icon.png +0 -0
  437. package/pages/desktop/src/src/main.rs +10 -0
  438. package/pages/desktop/src/tauri.conf.json +73 -0
  439. package/simple-git-hooks.cjs +1 -0
  440. package/tsconfig.json +33 -12
  441. package/vitest.config.ts +25 -17
  442. package/buddy/bin/stacks.mjs +0 -4
  443. package/buddy/build.config.ts +0 -17
  444. package/buddy/node_modules/.bin/only-allow +0 -17
  445. package/buddy/node_modules/.bin/tsc +0 -17
  446. package/buddy/node_modules/.bin/tsserver +0 -17
  447. package/buddy/node_modules/.bin/unbuild +0 -17
  448. package/buddy/package.json +0 -194
  449. package/buddy/src/cli.ts +0 -66
  450. package/buddy/src/commands/clean.ts +0 -20
  451. package/buddy/src/commands/update.ts +0 -115
  452. package/core/actions/node_modules/.bin/esno +0 -17
  453. package/core/actions/node_modules/.bin/mkdist +0 -17
  454. package/core/actions/node_modules/.bin/tsc +0 -17
  455. package/core/actions/node_modules/.bin/tsserver +0 -17
  456. package/core/actions/src/build-core.ts +0 -7
  457. package/core/actions/src/fix-lint-issues.ts +0 -4
  458. package/core/actions/src/generate-onboarding.ts +0 -3
  459. package/core/actions/src/update.ts +0 -149
  460. package/core/ai/node_modules/.bin/mkdist +0 -17
  461. package/core/ai/node_modules/.bin/tsc +0 -17
  462. package/core/ai/node_modules/.bin/tsserver +0 -17
  463. package/core/alias/node_modules/.bin/mkdist +0 -17
  464. package/core/alias/node_modules/.bin/tsc +0 -17
  465. package/core/alias/node_modules/.bin/tsserver +0 -17
  466. package/core/arrays/node_modules/.bin/mkdist +0 -17
  467. package/core/arrays/node_modules/.bin/tsc +0 -17
  468. package/core/arrays/node_modules/.bin/tsserver +0 -17
  469. package/core/auth/node_modules/.bin/mkdist +0 -17
  470. package/core/auth/node_modules/.bin/tsc +0 -17
  471. package/core/auth/node_modules/.bin/tsserver +0 -17
  472. package/core/build/node_modules/.bin/mkdist +0 -17
  473. package/core/build/node_modules/.bin/tsc +0 -17
  474. package/core/build/node_modules/.bin/tsserver +0 -17
  475. package/core/cache/node_modules/.bin/mkdist +0 -17
  476. package/core/cache/node_modules/.bin/tsc +0 -17
  477. package/core/cache/node_modules/.bin/tsserver +0 -17
  478. package/core/chat/node_modules/.bin/mkdist +0 -17
  479. package/core/chat/node_modules/.bin/tsc +0 -17
  480. package/core/chat/node_modules/.bin/tsserver +0 -17
  481. package/core/cli/node_modules/.bin/esno +0 -17
  482. package/core/cli/node_modules/.bin/mkdist +0 -17
  483. package/core/cloud/node_modules/.bin/mkdist +0 -17
  484. package/core/cloud/node_modules/.bin/tsc +0 -17
  485. package/core/cloud/node_modules/.bin/tsserver +0 -17
  486. package/core/collections/node_modules/.bin/mkdist +0 -17
  487. package/core/collections/node_modules/.bin/tsc +0 -17
  488. package/core/collections/node_modules/.bin/tsserver +0 -17
  489. package/core/config/node_modules/.bin/mkdist +0 -17
  490. package/core/config/node_modules/.bin/tsc +0 -17
  491. package/core/config/node_modules/.bin/tsserver +0 -17
  492. package/core/config/node_modules/.bin/unbuild +0 -17
  493. package/core/config/src/helpers.ts +0 -30
  494. package/core/dashboard/README.md +0 -74
  495. package/core/dashboard/node_modules/.bin/mkdist +0 -17
  496. package/core/database/node_modules/.bin/mkdist +0 -17
  497. package/core/database/node_modules/.bin/tsc +0 -17
  498. package/core/database/node_modules/.bin/tsserver +0 -17
  499. package/core/datetime/node_modules/.bin/mkdist +0 -17
  500. package/core/datetime/node_modules/.bin/tsc +0 -17
  501. package/core/datetime/node_modules/.bin/tsserver +0 -17
  502. package/core/desktop/node_modules/.bin/mkdist +0 -17
  503. package/core/desktop/node_modules/.bin/tsc +0 -17
  504. package/core/desktop/node_modules/.bin/tsserver +0 -17
  505. package/core/docs/node_modules/.bin/mkdist +0 -17
  506. package/core/docs/node_modules/.bin/tsc +0 -17
  507. package/core/docs/node_modules/.bin/tsserver +0 -17
  508. package/core/domains/node_modules/.bin/mkdist +0 -17
  509. package/core/domains/node_modules/.bin/tsc +0 -17
  510. package/core/domains/node_modules/.bin/tsserver +0 -17
  511. package/core/drivers/node_modules/.bin/mkdist +0 -17
  512. package/core/drivers/node_modules/.bin/tsc +0 -17
  513. package/core/drivers/node_modules/.bin/tsserver +0 -17
  514. package/core/drivers/src/index.ts +0 -10
  515. package/core/email/dist/utils/template.html +0 -8
  516. package/core/email/node_modules/.bin/mkdist +0 -17
  517. package/core/email/node_modules/.bin/tsc +0 -17
  518. package/core/email/node_modules/.bin/tsserver +0 -17
  519. package/core/error-handling/node_modules/.bin/mkdist +0 -17
  520. package/core/error-handling/node_modules/.bin/tsc +0 -17
  521. package/core/error-handling/node_modules/.bin/tsserver +0 -17
  522. package/core/events/node_modules/.bin/mkdist +0 -17
  523. package/core/events/node_modules/.bin/tsc +0 -17
  524. package/core/events/node_modules/.bin/tsserver +0 -17
  525. package/core/git/node_modules/.bin/mkdist +0 -17
  526. package/core/git/node_modules/.bin/tsc +0 -17
  527. package/core/git/node_modules/.bin/tsserver +0 -17
  528. package/core/health/node_modules/.bin/mkdist +0 -17
  529. package/core/health/node_modules/.bin/tsc +0 -17
  530. package/core/health/node_modules/.bin/tsserver +0 -17
  531. package/core/lint/node_modules/.bin/mkdist +0 -17
  532. package/core/lint/node_modules/.bin/tsc +0 -17
  533. package/core/lint/node_modules/.bin/tsserver +0 -17
  534. package/core/logging/debug-test.ts +0 -8
  535. package/core/logging/node_modules/.bin/mkdist +0 -17
  536. package/core/modules/node_modules/.bin/mkdist +0 -17
  537. package/core/modules/node_modules/.bin/tsc +0 -17
  538. package/core/modules/node_modules/.bin/tsserver +0 -17
  539. package/core/notifications/node_modules/.bin/mkdist +0 -17
  540. package/core/notifications/node_modules/.bin/tsc +0 -17
  541. package/core/notifications/node_modules/.bin/tsserver +0 -17
  542. package/core/notifications/node_modules/.bin/unbuild +0 -17
  543. package/core/objects/node_modules/.bin/mkdist +0 -17
  544. package/core/objects/node_modules/.bin/tsc +0 -17
  545. package/core/objects/node_modules/.bin/tsserver +0 -17
  546. package/core/pages/node_modules/.bin/mkdist +0 -17
  547. package/core/pages/node_modules/.bin/tsc +0 -17
  548. package/core/pages/node_modules/.bin/tsserver +0 -17
  549. package/core/path/node_modules/.bin/mkdist +0 -17
  550. package/core/path/node_modules/.bin/tsc +0 -17
  551. package/core/path/node_modules/.bin/tsserver +0 -17
  552. package/core/payments/node_modules/.bin/mkdist +0 -17
  553. package/core/payments/node_modules/.bin/tsc +0 -17
  554. package/core/payments/node_modules/.bin/tsserver +0 -17
  555. package/core/push/node_modules/.bin/mkdist +0 -17
  556. package/core/push/node_modules/.bin/tsc +0 -17
  557. package/core/push/node_modules/.bin/tsserver +0 -17
  558. package/core/queue/node_modules/.bin/mkdist +0 -17
  559. package/core/queue/node_modules/.bin/tsc +0 -17
  560. package/core/queue/node_modules/.bin/tsserver +0 -17
  561. package/core/realtime/node_modules/.bin/mkdist +0 -17
  562. package/core/realtime/node_modules/.bin/tsc +0 -17
  563. package/core/realtime/node_modules/.bin/tsserver +0 -17
  564. package/core/router/node_modules/.bin/mkdist +0 -17
  565. package/core/router/node_modules/.bin/tsc +0 -17
  566. package/core/router/node_modules/.bin/tsserver +0 -17
  567. package/core/search-engine/node_modules/.bin/mkdist +0 -17
  568. package/core/search-engine/node_modules/.bin/tsc +0 -17
  569. package/core/search-engine/node_modules/.bin/tsserver +0 -17
  570. package/core/security/node_modules/.bin/mkdist +0 -17
  571. package/core/security/node_modules/.bin/tsc +0 -17
  572. package/core/security/node_modules/.bin/tsserver +0 -17
  573. package/core/server/node_modules/.bin/mkdist +0 -17
  574. package/core/server/node_modules/.bin/tsc +0 -17
  575. package/core/server/node_modules/.bin/tsserver +0 -17
  576. package/core/sms/node_modules/.bin/mkdist +0 -17
  577. package/core/sms/node_modules/.bin/tsc +0 -17
  578. package/core/sms/node_modules/.bin/tsserver +0 -17
  579. package/core/storage/node_modules/.bin/mkdist +0 -17
  580. package/core/storage/node_modules/.bin/tsc +0 -17
  581. package/core/storage/node_modules/.bin/tsserver +0 -17
  582. package/core/strings/node_modules/.bin/mkdist +0 -17
  583. package/core/strings/node_modules/.bin/tsc +0 -17
  584. package/core/strings/node_modules/.bin/tsserver +0 -17
  585. package/core/strings/node_modules/.bin/unbuild +0 -17
  586. package/core/tables/README.md +0 -109
  587. package/core/tables/examples/vue/App.vue +0 -12
  588. package/core/tables/examples/vue/favicon.png +0 -0
  589. package/core/tables/examples/vue/index.html +0 -20
  590. package/core/tables/examples/web/favicon.png +0 -0
  591. package/core/tables/examples/web/index.html +0 -13
  592. package/core/tables/index.html +0 -13
  593. package/core/tables/node_modules/.bin/mkdist +0 -17
  594. package/core/tables/node_modules/.bin/tsc +0 -17
  595. package/core/tables/node_modules/.bin/tsserver +0 -17
  596. package/core/tables/node_modules/.bin/unbuild +0 -17
  597. package/core/tables/node_modules/.bin/vite +0 -17
  598. package/core/tables/package.json +0 -64
  599. package/core/tables/src/App.vue +0 -23
  600. package/core/tables/src/components/Demo.vue +0 -89
  601. package/core/tables/src/components/README.md +0 -111
  602. package/core/tables/src/components/Table.vue +0 -342
  603. package/core/tables/src/components/TableBody.vue +0 -33
  604. package/core/tables/src/components/TableCellActionItems.vue +0 -9
  605. package/core/tables/src/components/TableFilters.vue +0 -703
  606. package/core/tables/src/components/TableHead.vue +0 -87
  607. package/core/tables/src/components/TablePagination.vue +0 -146
  608. package/core/tables/src/components/TableRow.vue +0 -78
  609. package/core/tables/src/components/TableSearch.vue +0 -38
  610. package/core/tables/src/components/Tooltip.vue +0 -10
  611. package/core/tables/src/docs/index.md +0 -0
  612. package/core/tables/src/functions/README.md +0 -8
  613. package/core/tables/src/functions/dark.ts +0 -3
  614. package/core/tables/src/functions/index.ts +0 -2
  615. package/core/tables/src/functions/table.ts +0 -207
  616. package/core/tables/src/main.js +0 -4
  617. package/core/tables/vite.config.ts +0 -26
  618. package/core/testing/node_modules/.bin/mkdist +0 -17
  619. package/core/types/node_modules/.bin/mkdist +0 -17
  620. package/core/types/node_modules/.bin/tsc +0 -17
  621. package/core/types/node_modules/.bin/tsserver +0 -17
  622. package/core/ui/node_modules/.bin/mkdist +0 -17
  623. package/core/ui/node_modules/.bin/tsc +0 -17
  624. package/core/ui/node_modules/.bin/tsserver +0 -17
  625. package/core/utils/node_modules/.bin/esno +0 -17
  626. package/core/utils/node_modules/.bin/mkdist +0 -17
  627. package/core/utils/node_modules/.bin/tsc +0 -17
  628. package/core/utils/node_modules/.bin/tsserver +0 -17
  629. package/core/utils/src/is.ts +0 -14
  630. package/core/utils/src/vendor.ts +0 -1
  631. package/core/validation/node_modules/.bin/mkdist +0 -17
  632. package/core/validation/node_modules/.bin/tsc +0 -17
  633. package/core/validation/node_modules/.bin/tsserver +0 -17
  634. package/core/x-ray/node_modules/.bin/mkdist +0 -17
  635. package/core/x-ray/node_modules/.bin/tsc +0 -17
  636. package/core/x-ray/node_modules/.bin/tsserver +0 -17
  637. package/core/x-ray/routes/index.ts +0 -19
  638. package/core/x-ray/src/client.ts +0 -14
  639. package/core/x-ray/src/desktop/api/nitro.config.ts +0 -18
  640. package/core/x-ray/src/desktop/api/routes/api/logs.ts +0 -7
  641. package/core/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -22
  642. package/core/x-ray/src/desktop/api/src/types.ts +0 -7
  643. package/core/x-ray/src/desktop/api/storage/index.ts +0 -7
  644. package/core/x-ray/src/desktop/app.vue +0 -376
  645. package/core/x-ray/src/desktop/functions/http.ts +0 -26
  646. package/core/x-ray/src/desktop/functions/types.ts +0 -7
  647. package/core/x-ray/src/desktop/main.ts +0 -14
  648. package/core/x-ray/src/desktop/modules/counter/mod.vue +0 -44
  649. package/core/x-ray/src/desktop/modules/fetcher/mod.vue +0 -63
  650. package/core/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -5
  651. package/core/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
  652. package/core/x-ray/src/desktop/services/http.ts +0 -45
  653. package/core/x-ray/src/desktop/styles/app.scss +0 -0
  654. package/core/x-ray/src/http.ts +0 -26
  655. package/core/x-ray/src/index.ts +0 -42
  656. package/core/x-ray/src/ray.config.js +0 -28
  657. package/core/x-ray/src/types.ts +0 -8
  658. package/examples/vue/App.vue +0 -12
  659. package/examples/vue/favicon.png +0 -0
  660. package/examples/vue/index.html +0 -20
  661. package/examples/web/favicon.png +0 -0
  662. package/examples/web/index.html +0 -13
  663. package/functions/package.json +0 -41
  664. package/pages/node_modules/.bin/mkdist +0 -17
  665. package/pages/node_modules/.bin/tsc +0 -17
  666. package/pages/node_modules/.bin/tsserver +0 -17
  667. package/pages/src/index.ts +0 -19
  668. package/tests/feature/example.spec.ts +0 -20
  669. /package/core/actions/src/{build-component-libs.ts → build/component-libs.ts} +0 -0
  670. /package/core/actions/src/{build-stacks.ts → build/stacks.ts} +0 -0
  671. /package/core/actions/src/{dev-components.ts → dev/components.ts} +0 -0
  672. /package/core/actions/src/{generate-settings.ts → generate/settings.ts} +0 -0
  673. /package/core/actions/src/{lint-fix.ts → lint/fix.ts} +0 -0
  674. /package/core/actions/src/{lint.ts → lint/index.ts} +0 -0
  675. /package/core/actions/src/{test-coverage.ts → test/coverage.ts} +0 -0
  676. /package/core/actions/src/{test-feature.ts → test/feature.ts} +0 -0
  677. /package/core/actions/src/{test-ui.ts → test/ui.ts} +0 -0
  678. /package/core/actions/src/{test-unit.ts → test/unit.ts} +0 -0
  679. /package/core/{dashboard/src/index.ts → actions/src/upgrade/dependencies.ts} +0 -0
  680. /package/core/{tables/src/cli/index.ts → analytics/src/drivers/fathom.ts} +0 -0
  681. /package/core/{tables/src/config/tables.ts → analytics/src/index.ts} +0 -0
  682. /package/core/{dashboard → analytics}/tests/example.test.ts +0 -0
  683. /package/{buddy → core/buddy}/art/social.png +0 -0
  684. /package/{netlify.toml → core/cloud/netlify.toml} +0 -0
  685. /package/core/{drivers → development}/tests/example.test.ts +0 -0
  686. /package/core/{tables → faker}/tests/example.test.ts +0 -0
  687. /package/core/{x-ray → orm}/tests/example.test.ts +0 -0
  688. /package/{pages → core/query-builder}/tests/example.test.ts +0 -0
  689. /package/{tests/unit → core/scheduler/tests}/example.test.ts +0 -0
  690. /package/pages/{App.vue → web/App.vue} +0 -0
  691. /package/pages/{index.html → web/index.html} +0 -0
  692. /package/pages/{main.ts → web/main.ts} +0 -0
  693. /package/pages/{public → web/public}/_headers +0 -0
  694. /package/pages/{public → web/public}/favicon-dark.svg +0 -0
  695. /package/pages/{public → web/public}/favicon.svg +0 -0
  696. /package/pages/{public → web/public}/pwa-192x192.png +0 -0
  697. /package/pages/{public → web/public}/pwa-512x512.png +0 -0
  698. /package/pages/{public → web/public}/safari-pinned-tab.svg +0 -0
  699. /package/pages/{styles → web/styles}/main.css +0 -0
  700. /package/pages/{styles → web/styles}/markdown.css +0 -0
package/auto-imports.d.ts CHANGED
@@ -1,22 +1,776 @@
1
- // Generated by 'unplugin-auto-import'
1
+ /* eslint-disable */
2
+ /* prettier-ignore */
3
+ // @ts-nocheck
4
+ // Generated by unplugin-auto-import
2
5
  export {}
3
6
  declare global {
4
- const $$: typeof import('vue/macros')['$$']
7
+ const $: typeof import('vue/macros')['
8
+ // for type re-export
9
+ declare global {
10
+ // @ts-ignore
11
+ export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
12
+ }
13
+ // for vue template auto import
14
+ import { UnwrapRef } from 'vue'
15
+ declare module 'vue' {
16
+ interface ComponentCustomProperties {
17
+ readonly $$: UnwrapRef<typeof import('vue/macros')['$$']>
18
+ readonly $: UnwrapRef<typeof import('vue/macros')['$']>
19
+ readonly $computed: UnwrapRef<typeof import('vue/macros')['$computed']>
20
+ readonly $customRef: UnwrapRef<typeof import('vue/macros')['$customRef']>
21
+ readonly $ref: UnwrapRef<typeof import('vue/macros')['$ref']>
22
+ readonly $shallowRef: UnwrapRef<typeof import('vue/macros')['$shallowRef']>
23
+ readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
24
+ readonly // wip: UnwrapRef<typeof import('./core/realtime/src/index')['// wip']>
25
+ readonly Collection: UnwrapRef<typeof import('./core/objects/src/index')['Collection']>
26
+ readonly CssEngine: UnwrapRef<typeof import('@stacksjs/ui')['CssEngine']>
27
+ readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
28
+ readonly Err: UnwrapRef<typeof import('./core/error-handling/src/index')['Err']>
29
+ readonly Head: UnwrapRef<typeof import('./core/utils/src/vendors')['Head']>
30
+ readonly HeadVuePlugin: UnwrapRef<typeof import('./core/utils/src/vendors')['HeadVuePlugin']>
31
+ readonly Ok: UnwrapRef<typeof import('./core/error-handling/src/index')['Ok']>
32
+ readonly Result: UnwrapRef<typeof import('./core/error-handling/src/index')['Result']>
33
+ readonly ResultAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['ResultAsync']>
34
+ readonly Router: UnwrapRef<typeof import('./core/router/src/index')['Router']>
35
+ readonly Store: UnwrapRef<typeof import('@stacksjs/ui')['Store']>
36
+ readonly Type: UnwrapRef<typeof import('./core/validation/src/validate')['Type']>
37
+ readonly UiEngine: UnwrapRef<typeof import('@stacksjs/ui')['UiEngine']>
38
+ readonly _dirname: UnwrapRef<typeof import('./core/storage/src/index')['_dirname']>
39
+ readonly actionsPath: UnwrapRef<typeof import('./core/path/src/index')['actionsPath']>
40
+ readonly add: UnwrapRef<typeof import('./core/utils/src/currency')['add']>
41
+ readonly addIrregularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addIrregularRule']>
42
+ readonly addPluralRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addPluralRule']>
43
+ readonly addSingularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addSingularRule']>
44
+ readonly addUncountableRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addUncountableRule']>
45
+ readonly afterAll: UnwrapRef<typeof import('vitest')['afterAll']>
46
+ readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
47
+ readonly aiPath: UnwrapRef<typeof import('./core/path/src/index')['aiPath']>
48
+ readonly aliasPath: UnwrapRef<typeof import('./core/path/src/index')['aliasPath']>
49
+ readonly allocate: UnwrapRef<typeof import('./core/utils/src/currency')['allocate']>
50
+ readonly and: UnwrapRef<typeof import('./core/utils/src/math')['and']>
51
+ readonly app: UnwrapRef<typeof import('../config/app')['default']>
52
+ readonly appPath: UnwrapRef<typeof import('./core/path/src/index')['appPath']>
53
+ readonly arraysPath: UnwrapRef<typeof import('./core/path/src/index')['arraysPath']>
54
+ readonly assert: UnwrapRef<typeof import('vitest')['assert']>
55
+ readonly asyncComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['asyncComputed']>
56
+ readonly at: UnwrapRef<typeof import('./core/arrays/src/index')['at']>
57
+ readonly auth: UnwrapRef<typeof import('./core/auth/src/index')['auth']>
58
+ readonly authPath: UnwrapRef<typeof import('./core/path/src/index')['authPath']>
59
+ readonly autoResetRef: UnwrapRef<typeof import('./core/utils/src/vendors')['autoResetRef']>
60
+ readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
61
+ readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
62
+ readonly basename: UnwrapRef<typeof import('./core/path/src/index')['basename']>
63
+ readonly batchInvoke: UnwrapRef<typeof import('./core/utils/src/function')['batchInvoke']>
64
+ readonly bcryptEncode: UnwrapRef<typeof import('./core/security/src/hash')['bcryptEncode']>
65
+ readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
66
+ readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
67
+ readonly beforeEach: UnwrapRef<typeof import('vitest')['beforeEach']>
68
+ readonly breakpointsAntDesign: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsAntDesign']>
69
+ readonly breakpointsBootstrapV5: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']>
70
+ readonly breakpointsMasterCss: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsMasterCss']>
71
+ readonly breakpointsQuasar: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsQuasar']>
72
+ readonly breakpointsSematic: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsSematic']>
73
+ readonly breakpointsTailwind: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsTailwind']>
74
+ readonly breakpointsVuetify: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsVuetify']>
75
+ readonly buildEnginePath: UnwrapRef<typeof import('./core/path/src/index')['buildEnginePath']>
76
+ readonly buildEntriesPath: UnwrapRef<typeof import('./core/path/src/index')['buildEntriesPath']>
77
+ readonly buildPath: UnwrapRef<typeof import('./core/path/src/index')['buildPath']>
78
+ readonly cache: UnwrapRef<typeof import('../config/cache')['default']>
79
+ readonly cachePath: UnwrapRef<typeof import('./core/path/src/index')['cachePath']>
80
+ readonly calculatePagination: UnwrapRef<typeof import('./core/search-engine/src/index')['calculatePagination']>
81
+ readonly camelCase: UnwrapRef<typeof import('./core/strings/src/case')['camelCase']>
82
+ readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/case')['capitalCase']>
83
+ readonly capitalize: UnwrapRef<typeof import('./core/strings/src/utils')['capitalize']>
84
+ readonly cdn: UnwrapRef<typeof import('../config/cdn')['default']>
85
+ readonly chai: UnwrapRef<typeof import('vitest')['chai']>
86
+ readonly chatPath: UnwrapRef<typeof import('./core/path/src/index')['chatPath']>
87
+ readonly clamp: UnwrapRef<typeof import('./core/utils/src/math')['clamp']>
88
+ readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/index')['clampArrayRange']>
89
+ readonly clearUndefined: UnwrapRef<typeof import('./core/objects/src/index')['clearUndefined']>
90
+ readonly cli: UnwrapRef<typeof import('../config/cli')['default']>
91
+ readonly cliPath: UnwrapRef<typeof import('./core/path/src/index')['cliPath']>
92
+ readonly client: UnwrapRef<typeof import('./core/search-engine/src/index')['client']>
93
+ readonly cloneFnJSON: UnwrapRef<typeof import('./core/utils/src/vendors')['cloneFnJSON']>
94
+ readonly cloudPath: UnwrapRef<typeof import('./core/path/src/index')['cloudPath']>
95
+ readonly collect: UnwrapRef<typeof import('./core/objects/src/index')['collect']>
96
+ readonly collectionsPath: UnwrapRef<typeof import('./core/path/src/index')['collectionsPath']>
97
+ readonly compare: UnwrapRef<typeof import('./core/utils/src/currency')['compare']>
98
+ readonly componentsPath: UnwrapRef<typeof import('./core/path/src/index')['componentsPath']>
99
+ readonly computed: UnwrapRef<typeof import('vue')['computed']>
100
+ readonly computedAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['computedAsync']>
101
+ readonly computedEager: UnwrapRef<typeof import('./core/utils/src/vendors')['computedEager']>
102
+ readonly computedInject: UnwrapRef<typeof import('./core/utils/src/vendors')['computedInject']>
103
+ readonly computedWithControl: UnwrapRef<typeof import('./core/utils/src/vendors')['computedWithControl']>
104
+ readonly config: UnwrapRef<typeof import('./core/notifications/src/tailwind.config')['config']>
105
+ readonly configPath: UnwrapRef<typeof import('./core/path/src/index')['configPath']>
106
+ readonly constantCase: UnwrapRef<typeof import('./core/strings/src/case')['constantCase']>
107
+ readonly contains: UnwrapRef<typeof import('./core/arrays/src/index')['contains']>
108
+ readonly containsAll: UnwrapRef<typeof import('./core/arrays/src/index')['containsAll']>
109
+ readonly containsAny: UnwrapRef<typeof import('./core/arrays/src/index')['containsAny']>
110
+ readonly containsNone: UnwrapRef<typeof import('./core/arrays/src/index')['containsNone']>
111
+ readonly containsOnly: UnwrapRef<typeof import('./core/arrays/src/index')['containsOnly']>
112
+ readonly controlledComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledComputed']>
113
+ readonly controlledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledRef']>
114
+ readonly convert: UnwrapRef<typeof import('./core/utils/src/currency')['convert']>
115
+ readonly copyFolder: UnwrapRef<typeof import('./core/storage/src/index')['copyFolder']>
116
+ readonly corePath: UnwrapRef<typeof import('./core/path/src/index')['corePath']>
117
+ readonly count: UnwrapRef<typeof import('../functions/counter')['count']>
118
+ readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
119
+ readonly createControlledPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createControlledPromise']>
120
+ readonly createEventHook: UnwrapRef<typeof import('./core/utils/src/vendors')['createEventHook']>
121
+ readonly createFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['createFetch']>
122
+ readonly createFolder: UnwrapRef<typeof import('./core/storage/src/index')['createFolder']>
123
+ readonly createGenericProjection: UnwrapRef<typeof import('./core/utils/src/math')['createGenericProjection']>
124
+ readonly createGlobalState: UnwrapRef<typeof import('./core/utils/src/vendors')['createGlobalState']>
125
+ readonly createHead: UnwrapRef<typeof import('./core/utils/src/vendors')['createHead']>
126
+ readonly createInjectionState: UnwrapRef<typeof import('./core/utils/src/vendors')['createInjectionState']>
127
+ readonly createProjection: UnwrapRef<typeof import('./core/utils/src/math')['createProjection']>
128
+ readonly createPromiseLock: UnwrapRef<typeof import('./core/utils/src/promise')['createPromiseLock']>
129
+ readonly createReactiveFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createReactiveFn']>
130
+ readonly createReusableTemplate: UnwrapRef<typeof import('./core/utils/src/vendors')['createReusableTemplate']>
131
+ readonly createSharedComposable: UnwrapRef<typeof import('./core/utils/src/vendors')['createSharedComposable']>
132
+ readonly createSingletonPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createSingletonPromise']>
133
+ readonly createTemplatePromise: UnwrapRef<typeof import('./core/utils/src/vendors')['createTemplatePromise']>
134
+ readonly createUnrefFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createUnrefFn']>
135
+ readonly currentPage: UnwrapRef<typeof import('./core/search-engine/src/index')['currentPage']>
136
+ readonly customElementsDataPath: UnwrapRef<typeof import('./core/path/src/index')['customElementsDataPath']>
137
+ readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
138
+ readonly customStorageEventName: UnwrapRef<typeof import('./core/utils/src/vendors')['customStorageEventName']>
139
+ readonly dashboardPath: UnwrapRef<typeof import('./core/path/src/index')['dashboardPath']>
140
+ readonly database: UnwrapRef<typeof import('../config/database')['default']>
141
+ readonly databasePath: UnwrapRef<typeof import('./core/path/src/index')['databasePath']>
142
+ readonly dd: UnwrapRef<typeof import('./core/logging/src/index')['dd']>
143
+ readonly debounce: UnwrapRef<typeof import('./core/utils/src/debounce')['debounce']>
144
+ readonly debouncedRef: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedRef']>
145
+ readonly debouncedWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedWatch']>
146
+ readonly debug: UnwrapRef<typeof import('../config/debug')['default']>
147
+ readonly decrypt: UnwrapRef<typeof import('./core/security/src/crypt')['decrypt']>
148
+ readonly deepMerge: UnwrapRef<typeof import('./core/objects/src/index')['deepMerge']>
149
+ readonly defaultDocument: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultDocument']>
150
+ readonly defaultLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultLocation']>
151
+ readonly defaultNavigator: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultNavigator']>
152
+ readonly defaultWindow: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultWindow']>
153
+ readonly defineApp: UnwrapRef<typeof import('./core/utils/src/config')['defineApp']>
154
+ readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
155
+ readonly defineCache: UnwrapRef<typeof import('./core/utils/src/config')['defineCache']>
156
+ readonly defineCdn: UnwrapRef<typeof import('./core/utils/src/config')['defineCdn']>
157
+ readonly defineCli: UnwrapRef<typeof import('./core/utils/src/config')['defineCli']>
158
+ readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
159
+ readonly defineCronJobsConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineCronJobsConfig']>
160
+ readonly defineDatabase: UnwrapRef<typeof import('./core/utils/src/config')['defineDatabase']>
161
+ readonly defineDebugConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineDebugConfig']>
162
+ readonly defineDns: UnwrapRef<typeof import('./core/utils/src/config')['defineDns']>
163
+ readonly defineEmailConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineEmailConfig']>
164
+ readonly defineEvents: UnwrapRef<typeof import('./core/utils/src/config')['defineEvents']>
165
+ readonly defineGit: UnwrapRef<typeof import('./core/utils/src/config')['defineGit']>
166
+ readonly defineHashing: UnwrapRef<typeof import('./core/utils/src/config')['defineHashing']>
167
+ readonly defineLibrary: UnwrapRef<typeof import('./core/utils/src/config')['defineLibrary']>
168
+ readonly defineModel: UnwrapRef<typeof import('./core/utils/src/config')['defineModel']>
169
+ readonly defineNotification: UnwrapRef<typeof import('./core/utils/src/config')['defineNotification']>
170
+ readonly definePage: UnwrapRef<typeof import('./core/utils/src/config')['definePage']>
171
+ readonly definePayment: UnwrapRef<typeof import('./core/utils/src/config')['definePayment']>
172
+ readonly defineSearchEngine: UnwrapRef<typeof import('./core/utils/src/config')['defineSearchEngine']>
173
+ readonly defineServices: UnwrapRef<typeof import('./core/utils/src/config')['defineServices']>
174
+ readonly defineStorage: UnwrapRef<typeof import('./core/utils/src/config')['defineStorage']>
175
+ readonly defineUi: UnwrapRef<typeof import('./core/utils/src/config')['defineUi']>
176
+ readonly del: UnwrapRef<typeof import('./core/utils/src/delete')['del']>
177
+ readonly deleteEmptyFolders: UnwrapRef<typeof import('./core/storage/src/index')['deleteEmptyFolders']>
178
+ readonly deleteFiles: UnwrapRef<typeof import('./core/storage/src/index')['deleteFiles']>
179
+ readonly deleteFolder: UnwrapRef<typeof import('./core/storage/src/index')['deleteFolder']>
180
+ readonly delimiter: UnwrapRef<typeof import('./core/path/src/index')['delimiter']>
181
+ readonly describe: UnwrapRef<typeof import('vitest')['describe']>
182
+ readonly desktopPath: UnwrapRef<typeof import('./core/path/src/index')['desktopPath']>
183
+ readonly detectIndent: UnwrapRef<typeof import('./core/utils/src/helpers')['detectIndent']>
184
+ readonly detectNewline: UnwrapRef<typeof import('./core/utils/src/helpers')['detectNewline']>
185
+ readonly determineDebugLevel: UnwrapRef<typeof import('./core/utils/src/helpers')['determineDebugLevel']>
186
+ readonly determineResetPreset: UnwrapRef<typeof import('./core/utils/src/helpers')['determineResetPreset']>
187
+ readonly determineState: UnwrapRef<typeof import('./core/search-engine/src/helpers')['determineState']>
188
+ readonly developmentPath: UnwrapRef<typeof import('./core/path/src/index')['developmentPath']>
189
+ readonly dinero: UnwrapRef<typeof import('./core/utils/src/currency')['dinero']>
190
+ readonly dirname: UnwrapRef<typeof import('./core/path/src/index')['dirname']>
191
+ readonly discord: UnwrapRef<typeof import('./core/chat/src/index')['discord']>
192
+ readonly dns: UnwrapRef<typeof import('../config/dns')['default']>
193
+ readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
194
+ readonly docsPath: UnwrapRef<typeof import('./core/path/src/index')['docsPath']>
195
+ readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
196
+ readonly doesNotContain: UnwrapRef<typeof import('./core/arrays/src/index')['doesNotContain']>
197
+ readonly domainsPath: UnwrapRef<typeof import('./core/path/src/index')['domainsPath']>
198
+ readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
199
+ readonly dump: UnwrapRef<typeof import('./core/logging/src/index')['dump']>
200
+ readonly dynamodb: UnwrapRef<typeof import('./core/cache/src/index')['dynamodb']>
201
+ readonly eagerComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['eagerComputed']>
202
+ readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
203
+ readonly email: UnwrapRef<typeof import('../config/email')['default']>
204
+ readonly emailPath: UnwrapRef<typeof import('./core/path/src/index')['emailPath']>
205
+ readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
206
+ readonly ensurePrefix: UnwrapRef<typeof import('./core/strings/src/utils')['ensurePrefix']>
207
+ readonly ensureSuffix: UnwrapRef<typeof import('./core/strings/src/utils')['ensureSuffix']>
208
+ readonly env: UnwrapRef<typeof import('./core/utils/src/config')['env']>
209
+ readonly envVariables: UnwrapRef<typeof import('./core/validation/src/validate')['envVariables']>
210
+ readonly equal: UnwrapRef<typeof import('./core/utils/src/currency')['equal']>
211
+ readonly err: UnwrapRef<typeof import('./core/error-handling/src/index')['err']>
212
+ readonly errAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['errAsync']>
213
+ readonly errorHandlingPath: UnwrapRef<typeof import('./core/path/src/index')['errorHandlingPath']>
214
+ readonly eslint: UnwrapRef<typeof import('./core/lint/src/index')['eslint']>
215
+ readonly events: UnwrapRef<typeof import('../config/events')['default']>
216
+ readonly eventsPath: UnwrapRef<typeof import('./core/path/src/index')['eventsPath']>
217
+ readonly examplesPath: UnwrapRef<typeof import('./core/path/src/index')['examplesPath']>
218
+ readonly executeTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['executeTransition']>
219
+ readonly expect: UnwrapRef<typeof import('vitest')['expect']>
220
+ readonly expo: UnwrapRef<typeof import('./core/push/src/index')['expo']>
221
+ readonly extendRef: UnwrapRef<typeof import('./core/utils/src/vendors')['extendRef']>
222
+ readonly extname: UnwrapRef<typeof import('./core/path/src/index')['extname']>
223
+ readonly fakerPath: UnwrapRef<typeof import('./core/path/src/index')['fakerPath']>
224
+ readonly fcm: UnwrapRef<typeof import('./core/push/src/index')['fcm']>
225
+ readonly feature: UnwrapRef<typeof import('./core/testing/src/index')['feature']>
226
+ readonly filesystem: UnwrapRef<typeof import('./core/storage/src/index')['filesystem']>
227
+ readonly filterName: UnwrapRef<typeof import('./core/search-engine/src/index')['filterName']>
228
+ readonly filters: UnwrapRef<typeof import('./core/search-engine/src/index')['filters']>
229
+ readonly flattenArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['flattenArrayable']>
230
+ readonly format: UnwrapRef<typeof import('./core/path/src/index')['format']>
231
+ readonly formatTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['formatTimeAgo']>
232
+ readonly frameworkPath: UnwrapRef<typeof import('./core/path/src/index')['frameworkPath']>
233
+ readonly frameworkVersion: UnwrapRef<typeof import('./core/utils/src/helpers')['frameworkVersion']>
234
+ readonly fromPromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromPromise']>
235
+ readonly fromSafePromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromSafePromise']>
236
+ readonly fromThrowable: UnwrapRef<typeof import('./core/error-handling/src/index')['fromThrowable']>
237
+ readonly functionsPath: UnwrapRef<typeof import('./core/path/src/index')['functionsPath']>
238
+ readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
239
+ readonly generateFactoryFile: UnwrapRef<typeof import('./core/database/src/factory/index')['generateFactoryFile']>
240
+ readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
241
+ readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
242
+ readonly getSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['getSSRHandler']>
243
+ readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/base')['getTypeName']>
244
+ readonly git: UnwrapRef<typeof import('../config/git')['default']>
245
+ readonly gitPath: UnwrapRef<typeof import('./core/path/src/index')['gitPath']>
246
+ readonly goToNextPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToNextPage']>
247
+ readonly goToPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPage']>
248
+ readonly goToPrevPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPrevPage']>
249
+ readonly greaterThan: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThan']>
250
+ readonly greaterThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThanOrEqual']>
251
+ readonly gupshup: UnwrapRef<typeof import('./core/sms/src/index')['gupshup']>
252
+ readonly h: UnwrapRef<typeof import('vue')['h']>
253
+ readonly hasComponents: UnwrapRef<typeof import('./core/storage/src/index')['hasComponents']>
254
+ readonly hasFiles: UnwrapRef<typeof import('./core/storage/src/index')['hasFiles']>
255
+ readonly hasFunctions: UnwrapRef<typeof import('./core/storage/src/index')['hasFunctions']>
256
+ readonly hasOwnProperty: UnwrapRef<typeof import('./core/objects/src/index')['hasOwnProperty']>
257
+ readonly hasScript: UnwrapRef<typeof import('./core/utils/src/helpers')['hasScript']>
258
+ readonly hasSubUnits: UnwrapRef<typeof import('./core/utils/src/currency')['hasSubUnits']>
259
+ readonly hashing: UnwrapRef<typeof import('../config/hashing')['default']>
260
+ readonly haveSameAmount: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameAmount']>
261
+ readonly haveSameCurrency: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameCurrency']>
262
+ readonly headerCase: UnwrapRef<typeof import('./core/strings/src/case')['headerCase']>
263
+ readonly healthPath: UnwrapRef<typeof import('./core/path/src/index')['healthPath']>
264
+ readonly hits: UnwrapRef<typeof import('./core/search-engine/src/index')['hits']>
265
+ readonly ignorableWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['ignorableWatch']>
266
+ readonly increment: UnwrapRef<typeof import('../functions/counter')['increment']>
267
+ readonly index: UnwrapRef<typeof import('./core/search-engine/src/index')['index']>
268
+ readonly inject: UnwrapRef<typeof import('vue')['inject']>
269
+ readonly isAbsolute: UnwrapRef<typeof import('./core/path/src/index')['isAbsolute']>
270
+ readonly isAlpha: UnwrapRef<typeof import('./core/validation/src/is')['isAlpha']>
271
+ readonly isAlphanumeric: UnwrapRef<typeof import('./core/validation/src/is')['isAlphanumeric']>
272
+ readonly isAppKeySet: UnwrapRef<typeof import('./core/utils/src/helpers')['isAppKeySet']>
273
+ readonly isArray: UnwrapRef<typeof import('./core/validation/src/is')['isArray']>
274
+ readonly isAscii: UnwrapRef<typeof import('./core/validation/src/is')['isAscii']>
275
+ readonly isBase32: UnwrapRef<typeof import('./core/validation/src/is')['isBase32']>
276
+ readonly isBase64: UnwrapRef<typeof import('./core/validation/src/is')['isBase64']>
277
+ readonly isBoolean: UnwrapRef<typeof import('./core/validation/src/is')['isBoolean']>
278
+ readonly isBrowser: UnwrapRef<typeof import('./core/validation/src/is')['isBrowser']>
279
+ readonly isByteLength: UnwrapRef<typeof import('./core/validation/src/is')['isByteLength']>
280
+ readonly isCreditCard: UnwrapRef<typeof import('./core/validation/src/is')['isCreditCard']>
281
+ readonly isCurrency: UnwrapRef<typeof import('./core/validation/src/is')['isCurrency']>
282
+ readonly isDark: UnwrapRef<typeof import('../functions/dark')['isDark']>
283
+ readonly isDataURI: UnwrapRef<typeof import('./core/validation/src/is')['isDataURI']>
284
+ readonly isDate: UnwrapRef<typeof import('./core/validation/src/is')['isDate']>
285
+ readonly isDeepEqual: UnwrapRef<typeof import('./core/utils/src/equal')['isDeepEqual']>
286
+ readonly isDef: UnwrapRef<typeof import('./core/validation/src/is')['isDef']>
287
+ readonly isDefined: UnwrapRef<typeof import('./core/utils/src/vendors')['isDefined']>
288
+ readonly isEmail: UnwrapRef<typeof import('./core/validation/src/is')['isEmail']>
289
+ readonly isEven: UnwrapRef<typeof import('./core/validation/src/is')['isEven']>
290
+ readonly isEvenOrOdd: UnwrapRef<typeof import('./core/validation/src/is')['isEvenOrOdd']>
291
+ readonly isFQDN: UnwrapRef<typeof import('./core/validation/src/is')['isFQDN']>
292
+ readonly isFile: UnwrapRef<typeof import('./core/storage/src/index')['isFile']>
293
+ readonly isFloat: UnwrapRef<typeof import('./core/validation/src/is')['isFloat']>
294
+ readonly isFolder: UnwrapRef<typeof import('./core/storage/src/index')['isFolder']>
295
+ readonly isFullWidth: UnwrapRef<typeof import('./core/validation/src/is')['isFullWidth']>
296
+ readonly isFunction: UnwrapRef<typeof import('./core/validation/src/is')['isFunction']>
297
+ readonly isHSL: UnwrapRef<typeof import('./core/validation/src/is')['isHSL']>
298
+ readonly isHalfWidth: UnwrapRef<typeof import('./core/validation/src/is')['isHalfWidth']>
299
+ readonly isHash: UnwrapRef<typeof import('./core/validation/src/is')['isHash']>
300
+ readonly isHexColor: UnwrapRef<typeof import('./core/validation/src/is')['isHexColor']>
301
+ readonly isHexadecimal: UnwrapRef<typeof import('./core/validation/src/is')['isHexadecimal']>
302
+ readonly isIBAN: UnwrapRef<typeof import('./core/validation/src/is')['isIBAN']>
303
+ readonly isIP: UnwrapRef<typeof import('./core/validation/src/is')['isIP']>
304
+ readonly isIPRange: UnwrapRef<typeof import('./core/validation/src/is')['isIPRange']>
305
+ readonly isISBN: UnwrapRef<typeof import('./core/validation/src/is')['isISBN']>
306
+ readonly isISIN: UnwrapRef<typeof import('./core/validation/src/is')['isISIN']>
307
+ readonly isISO31661Alpha2: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha2']>
308
+ readonly isISO31661Alpha3: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha3']>
309
+ readonly isISO8601: UnwrapRef<typeof import('./core/validation/src/is')['isISO8601']>
310
+ readonly isISRC: UnwrapRef<typeof import('./core/validation/src/is')['isISRC']>
311
+ readonly isISSN: UnwrapRef<typeof import('./core/validation/src/is')['isISSN']>
312
+ readonly isIdentityCard: UnwrapRef<typeof import('./core/validation/src/is')['isIdentityCard']>
313
+ readonly isInteger: UnwrapRef<typeof import('./core/validation/src/is')['isInteger']>
314
+ readonly isIntegerOrFloat: UnwrapRef<typeof import('./core/validation/src/is')['isIntegerOrFloat']>
315
+ readonly isJSON: UnwrapRef<typeof import('./core/validation/src/is')['isJSON']>
316
+ readonly isJWT: UnwrapRef<typeof import('./core/validation/src/is')['isJWT']>
317
+ readonly isKeyOf: UnwrapRef<typeof import('./core/objects/src/index')['isKeyOf']>
318
+ readonly isLatLong: UnwrapRef<typeof import('./core/validation/src/is')['isLatLong']>
319
+ readonly isLatitude: UnwrapRef<typeof import('./core/validation/src/is')['isLatitude']>
320
+ readonly isLongitude: UnwrapRef<typeof import('./core/validation/src/is')['isLongitude']>
321
+ readonly isMACAddress: UnwrapRef<typeof import('./core/validation/src/is')['isMACAddress']>
322
+ readonly isManifest: UnwrapRef<typeof import('./core/utils/src/helpers')['isManifest']>
323
+ readonly isMap: UnwrapRef<typeof import('./core/validation/src/is')['isMap']>
324
+ readonly isMimeType: UnwrapRef<typeof import('./core/validation/src/is')['isMimeType']>
325
+ readonly isMobilePhone: UnwrapRef<typeof import('./core/validation/src/is')['isMobilePhone']>
326
+ readonly isMongoId: UnwrapRef<typeof import('./core/validation/src/is')['isMongoId']>
327
+ readonly isNegative: UnwrapRef<typeof import('./core/validation/src/is')['isNegative']>
328
+ readonly isNull: UnwrapRef<typeof import('./core/validation/src/is')['isNull']>
329
+ readonly isNumber: UnwrapRef<typeof import('./core/validation/src/is')['isNumber']>
330
+ readonly isNumeric: UnwrapRef<typeof import('./core/validation/src/is')['isNumeric']>
331
+ readonly isObject: UnwrapRef<typeof import('./core/validation/src/is')['isObject']>
332
+ readonly isOdd: UnwrapRef<typeof import('./core/validation/src/is')['isOdd']>
333
+ readonly isOptionalString: UnwrapRef<typeof import('./core/utils/src/helpers')['isOptionalString']>
334
+ readonly isPlural: UnwrapRef<typeof import('./core/strings/src/pluralize')['isPlural']>
335
+ readonly isPositive: UnwrapRef<typeof import('./core/validation/src/is')['isPositive']>
336
+ readonly isPositiveOrNegative: UnwrapRef<typeof import('./core/validation/src/is')['isPositiveOrNegative']>
337
+ readonly isPostalCode: UnwrapRef<typeof import('./core/validation/src/is')['isPostalCode']>
338
+ readonly isPrimitive: UnwrapRef<typeof import('./core/validation/src/is')['isPrimitive']>
339
+ readonly isProjectCreated: UnwrapRef<typeof import('./core/utils/src/helpers')['isProjectCreated']>
340
+ readonly isPromise: UnwrapRef<typeof import('./core/validation/src/is')['isPromise']>
341
+ readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
342
+ readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
343
+ readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
344
+ readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
345
+ readonly isRegExp: UnwrapRef<typeof import('./core/validation/src/is')['isRegExp']>
346
+ readonly isServer: UnwrapRef<typeof import('./core/validation/src/is')['isServer']>
347
+ readonly isSet: UnwrapRef<typeof import('./core/validation/src/is')['isSet']>
348
+ readonly isSingular: UnwrapRef<typeof import('./core/strings/src/pluralize')['isSingular']>
349
+ readonly isString: UnwrapRef<typeof import('./core/validation/src/is')['isString']>
350
+ readonly isStrongPassword: UnwrapRef<typeof import('./core/validation/src/is')['isStrongPassword']>
351
+ readonly isSymbol: UnwrapRef<typeof import('./core/validation/src/is')['isSymbol']>
352
+ readonly isTruthy: UnwrapRef<typeof import('./core/utils/src/guards')['isTruthy']>
353
+ readonly isURL: UnwrapRef<typeof import('./core/validation/src/is')['isURL']>
354
+ readonly isUUID: UnwrapRef<typeof import('./core/validation/src/is')['isUUID']>
355
+ readonly isUndefined: UnwrapRef<typeof import('./core/validation/src/is')['isUndefined']>
356
+ readonly isWindow: UnwrapRef<typeof import('./core/validation/src/is')['isWindow']>
357
+ readonly isZero: UnwrapRef<typeof import('./core/utils/src/currency')['isZero']>
358
+ readonly it: UnwrapRef<typeof import('vitest')['it']>
359
+ readonly join: UnwrapRef<typeof import('./core/path/src/index')['join']>
360
+ readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/case')['kebabCase']>
361
+ readonly langPath: UnwrapRef<typeof import('./core/path/src/index')['langPath']>
362
+ readonly last: UnwrapRef<typeof import('./core/arrays/src/index')['last']>
363
+ readonly lastPageNumber: UnwrapRef<typeof import('./core/search-engine/src/index')['lastPageNumber']>
364
+ readonly lessThan: UnwrapRef<typeof import('./core/utils/src/currency')['lessThan']>
365
+ readonly lessThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['lessThanOrEqual']>
366
+ readonly library: UnwrapRef<typeof import('../config/library')['default']>
367
+ readonly libraryEntryPath: UnwrapRef<typeof import('./core/path/src/index')['libraryEntryPath']>
368
+ readonly lintPath: UnwrapRef<typeof import('./core/path/src/index')['lintPath']>
369
+ readonly log: UnwrapRef<typeof import('./core/logging/src/index')['log']>
370
+ readonly loggingPath: UnwrapRef<typeof import('./core/path/src/index')['loggingPath']>
371
+ readonly logicNot: UnwrapRef<typeof import('./core/utils/src/math')['logicNot']>
372
+ readonly logicOr: UnwrapRef<typeof import('./core/utils/src/math')['logicOr']>
373
+ readonly loop: UnwrapRef<typeof import('./core/utils/src/base')['loop']>
374
+ readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
375
+ readonly mapGamepadToXbox360Controller: UnwrapRef<typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']>
376
+ readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
377
+ readonly maximum: UnwrapRef<typeof import('./core/utils/src/currency')['maximum']>
378
+ readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
379
+ readonly memcached: UnwrapRef<typeof import('./core/cache/src/index')['memcached']>
380
+ readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['mergeArrayable']>
381
+ readonly migrate: UnwrapRef<typeof import('./core/database/src/migrations/index')['migrate']>
382
+ readonly minimum: UnwrapRef<typeof import('./core/utils/src/currency')['minimum']>
383
+ readonly modelsPath: UnwrapRef<typeof import('./core/path/src/index')['modelsPath']>
384
+ readonly modulesPath: UnwrapRef<typeof import('./core/path/src/index')['modulesPath']>
385
+ readonly money: UnwrapRef<typeof import('./core/utils/src/currency')['money']>
386
+ readonly move: UnwrapRef<typeof import('./core/arrays/src/index')['move']>
387
+ readonly multiply: UnwrapRef<typeof import('./core/utils/src/currency')['multiply']>
388
+ readonly nexmo: UnwrapRef<typeof import('./core/sms/src/index')['nexmo']>
389
+ readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
390
+ readonly noCase: UnwrapRef<typeof import('./core/strings/src/case')['noCase']>
391
+ readonly noNull: UnwrapRef<typeof import('./core/utils/src/guards')['noNull']>
392
+ readonly normalize: UnwrapRef<typeof import('./core/path/src/index')['normalize']>
393
+ readonly normalizeScale: UnwrapRef<typeof import('./core/utils/src/currency')['normalizeScale']>
394
+ readonly normalizeString: UnwrapRef<typeof import('./core/path/src/index')['normalizeString']>
395
+ readonly not: UnwrapRef<typeof import('./core/utils/src/math')['not']>
396
+ readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
397
+ readonly notification: UnwrapRef<typeof import('../config/notification')['default']>
398
+ readonly notificationsPath: UnwrapRef<typeof import('./core/path/src/index')['notificationsPath']>
399
+ readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
400
+ readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
401
+ readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
402
+ readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
403
+ readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
404
+ readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
405
+ readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
406
+ readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
407
+ readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
408
+ readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
409
+ readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
410
+ readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
411
+ readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
412
+ readonly onClickOutside: UnwrapRef<typeof import('./core/utils/src/vendors')['onClickOutside']>
413
+ readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
414
+ readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
415
+ readonly onKeyDown: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyDown']>
416
+ readonly onKeyPressed: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyPressed']>
417
+ readonly onKeyStroke: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyStroke']>
418
+ readonly onKeyUp: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyUp']>
419
+ readonly onLongPress: UnwrapRef<typeof import('./core/utils/src/vendors')['onLongPress']>
420
+ readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
421
+ readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
422
+ readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
423
+ readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
424
+ readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
425
+ readonly onStartTyping: UnwrapRef<typeof import('./core/utils/src/vendors')['onStartTyping']>
426
+ readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
427
+ readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
428
+ readonly onboardingPath: UnwrapRef<typeof import('./core/path/src/index')['onboardingPath']>
429
+ readonly or: UnwrapRef<typeof import('./core/utils/src/math')['or']>
430
+ readonly ormPath: UnwrapRef<typeof import('./core/path/src/index')['ormPath']>
431
+ readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
432
+ readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
433
+ readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
434
+ readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
435
+ readonly parse: UnwrapRef<typeof import('./core/path/src/index')['parse']>
436
+ readonly parseYaml: UnwrapRef<typeof import('./core/utils/src/helpers')['parseYaml']>
437
+ readonly partition: UnwrapRef<typeof import('./core/arrays/src/index')['partition']>
438
+ readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
439
+ readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
440
+ readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
441
+ readonly pathPath: UnwrapRef<typeof import('./core/path/src/index')['pathPath']>
442
+ readonly payment: UnwrapRef<typeof import('../config/payment')['default']>
443
+ readonly paymentsPath: UnwrapRef<typeof import('./core/path/src/index')['paymentsPath']>
444
+ readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
445
+ readonly plivo: UnwrapRef<typeof import('./core/sms/src/index')['plivo']>
446
+ readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
447
+ readonly preferredDark: UnwrapRef<typeof import('../functions/dark')['preferredDark']>
448
+ readonly presetForms: UnwrapRef<typeof import('@stacksjs/ui')['presetForms']>
449
+ readonly projectPath: UnwrapRef<typeof import('./core/path/src/index')['projectPath']>
450
+ readonly provide: UnwrapRef<typeof import('vue')['provide']>
451
+ readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
452
+ readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
453
+ readonly queryBuilderPath: UnwrapRef<typeof import('./core/path/src/index')['queryBuilderPath']>
454
+ readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
455
+ readonly rand: UnwrapRef<typeof import('./core/utils/src/math')['rand']>
456
+ readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
457
+ readonly range: UnwrapRef<typeof import('./core/arrays/src/index')['range']>
458
+ readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
459
+ readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
460
+ readonly readPackageJson: UnwrapRef<typeof import('./core/storage/src/index')['readPackageJson']>
461
+ readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
462
+ readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
463
+ readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
464
+ readonly redis: UnwrapRef<typeof import('./core/cache/src/index')['redis']>
465
+ readonly ref: UnwrapRef<typeof import('vue')['ref']>
466
+ readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
467
+ readonly remove: UnwrapRef<typeof import('./core/arrays/src/index')['remove']>
468
+ readonly renderHeadToString: UnwrapRef<typeof import('./core/utils/src/vendors')['renderHeadToString']>
469
+ readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
470
+ readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
471
+ readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
472
+ readonly rimraf: UnwrapRef<typeof import('./core/utils/src/delete')['rimraf']>
473
+ readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
474
+ readonly routesPath: UnwrapRef<typeof import('./core/path/src/index')['routesPath']>
475
+ readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
476
+ readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
477
+ readonly sample: UnwrapRef<typeof import('./core/arrays/src/index')['sample']>
478
+ readonly schedulerPath: UnwrapRef<typeof import('./core/path/src/index')['schedulerPath']>
479
+ readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
480
+ readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
481
+ readonly searchEnginePath: UnwrapRef<typeof import('./core/path/src/index')['searchEnginePath']>
482
+ readonly searchFilters: UnwrapRef<typeof import('./core/search-engine/src/index')['searchFilters']>
483
+ readonly searchParams: UnwrapRef<typeof import('./core/search-engine/src/index')['searchParams']>
484
+ readonly securityPath: UnwrapRef<typeof import('./core/path/src/index')['securityPath']>
485
+ readonly seed: UnwrapRef<typeof import('./core/database/src/seeder/index')['seed']>
486
+ readonly semver: UnwrapRef<typeof import('./core/utils/src/versions')['semver']>
487
+ readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/case')['sentenceCase']>
488
+ readonly sep: UnwrapRef<typeof import('./core/path/src/index')['sep']>
489
+ readonly serverPath: UnwrapRef<typeof import('./core/path/src/index')['serverPath']>
490
+ readonly serverlessPath: UnwrapRef<typeof import('./core/path/src/index')['serverlessPath']>
491
+ readonly services: UnwrapRef<typeof import('../config/services')['default']>
492
+ readonly setEnvValue: UnwrapRef<typeof import('./core/utils/src/helpers')['setEnvValue']>
493
+ readonly setSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['setSSRHandler']>
494
+ readonly setTotalHits: UnwrapRef<typeof import('./core/search-engine/src/index')['setTotalHits']>
495
+ readonly settingsPath: UnwrapRef<typeof import('./core/path/src/index')['settingsPath']>
496
+ readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
497
+ readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
498
+ readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
499
+ readonly shuffle: UnwrapRef<typeof import('./core/arrays/src/index')['shuffle']>
500
+ readonly signalsPath: UnwrapRef<typeof import('./core/path/src/index')['signalsPath']>
501
+ readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
502
+ readonly slack: UnwrapRef<typeof import('./core/chat/src/index')['slack']>
503
+ readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
504
+ readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
505
+ readonly slug: UnwrapRef<typeof import('./core/strings/src/utils')['slug']>
506
+ readonly sms77: UnwrapRef<typeof import('./core/sms/src/index')['sms77']>
507
+ readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
508
+ readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
509
+ readonly sns: UnwrapRef<typeof import('./core/sms/src/index')['sns']>
510
+ readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
511
+ readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
512
+ readonly src: UnwrapRef<typeof import('./core/storage/src/index')['default']>
513
+ readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
514
+ readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
515
+ readonly storagePath: UnwrapRef<typeof import('./core/path/src/index')['storagePath']>
516
+ readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
517
+ readonly stripe: UnwrapRef<typeof import('./core/payments/src/index')['stripe']>
518
+ readonly subtract: UnwrapRef<typeof import('./core/utils/src/currency')['subtract']>
519
+ readonly suite: UnwrapRef<typeof import('vitest')['suite']>
520
+ readonly syncRef: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRef']>
521
+ readonly syncRefs: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRefs']>
522
+ readonly tablesPath: UnwrapRef<typeof import('./core/path/src/index')['tablesPath']>
523
+ readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
524
+ readonly teams: UnwrapRef<typeof import('./core/chat/src/index')['teams']>
525
+ readonly telnyx: UnwrapRef<typeof import('./core/sms/src/index')['telnyx']>
526
+ readonly template: UnwrapRef<typeof import('./core/strings/src/utils')['template']>
527
+ readonly templateRef: UnwrapRef<typeof import('./core/utils/src/vendors')['templateRef']>
528
+ readonly termii: UnwrapRef<typeof import('./core/sms/src/index')['termii']>
529
+ readonly test: UnwrapRef<typeof import('vitest')['test']>
530
+ readonly testingPath: UnwrapRef<typeof import('./core/path/src/index')['testingPath']>
531
+ readonly testsPath: UnwrapRef<typeof import('./core/path/src/index')['testsPath']>
532
+ readonly throttle: UnwrapRef<typeof import('./core/utils/src/throttle')['throttle']>
533
+ readonly throttledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledRef']>
534
+ readonly throttledWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledWatch']>
535
+ readonly titleCase: UnwrapRef<typeof import('./core/strings/src/case')['titleCase']>
536
+ readonly toArray: UnwrapRef<typeof import('./core/arrays/src/index')['toArray']>
537
+ readonly toDecimal: UnwrapRef<typeof import('./core/utils/src/currency')['toDecimal']>
538
+ readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
539
+ readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
540
+ readonly toReactive: UnwrapRef<typeof import('./core/utils/src/vendors')['toReactive']>
541
+ readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
542
+ readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
543
+ readonly toSnapshot: UnwrapRef<typeof import('./core/utils/src/currency')['toSnapshot']>
544
+ readonly toString: UnwrapRef<typeof import('./core/utils/src/base')['toString']>
545
+ readonly toUnits: UnwrapRef<typeof import('./core/utils/src/currency')['toUnits']>
546
+ readonly toggleDark: UnwrapRef<typeof import('../functions/dark')['toggleDark']>
547
+ readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
548
+ readonly transformerCompileClass: UnwrapRef<typeof import('@stacksjs/ui')['transformerCompileClass']>
549
+ readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
550
+ readonly trimScale: UnwrapRef<typeof import('./core/utils/src/currency')['trimScale']>
551
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeMount']>
552
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']>
553
+ readonly tryOnMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnMounted']>
554
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnScopeDispose']>
555
+ readonly tryOnUnmounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnUnmounted']>
556
+ readonly twilio: UnwrapRef<typeof import('./core/sms/src/index')['twilio']>
557
+ readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
558
+ readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
559
+ readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
560
+ readonly uniq: UnwrapRef<typeof import('./core/arrays/src/index')['uniq']>
561
+ readonly uniqueBy: UnwrapRef<typeof import('./core/arrays/src/index')['uniqueBy']>
562
+ readonly unit: UnwrapRef<typeof import('./core/testing/src/index')['unit']>
563
+ readonly unref: UnwrapRef<typeof import('vue')['unref']>
564
+ readonly unrefElement: UnwrapRef<typeof import('./core/utils/src/vendors')['unrefElement']>
565
+ readonly until: UnwrapRef<typeof import('./core/utils/src/vendors')['until']>
566
+ readonly updateConfigFile: UnwrapRef<typeof import('./core/storage/src/index')['updateConfigFile']>
567
+ readonly upstash: UnwrapRef<typeof import('./core/cache/src/index')['upstash']>
568
+ readonly useAbs: UnwrapRef<typeof import('./core/utils/src/math')['useAbs']>
569
+ readonly useActiveElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useActiveElement']>
570
+ readonly useAnimate: UnwrapRef<typeof import('./core/utils/src/vendors')['useAnimate']>
571
+ readonly useAsyncQueue: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncQueue']>
572
+ readonly useAsyncState: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncState']>
573
+ readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
574
+ readonly useAverage: UnwrapRef<typeof import('./core/utils/src/math')['useAverage']>
575
+ readonly useBase64: UnwrapRef<typeof import('./core/utils/src/vendors')['useBase64']>
576
+ readonly useBattery: UnwrapRef<typeof import('./core/utils/src/vendors')['useBattery']>
577
+ readonly useBluetooth: UnwrapRef<typeof import('./core/utils/src/vendors')['useBluetooth']>
578
+ readonly useBreakpoints: UnwrapRef<typeof import('./core/utils/src/vendors')['useBreakpoints']>
579
+ readonly useBroadcastChannel: UnwrapRef<typeof import('./core/utils/src/vendors')['useBroadcastChannel']>
580
+ readonly useBrowserLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useBrowserLocation']>
581
+ readonly useCached: UnwrapRef<typeof import('./core/utils/src/vendors')['useCached']>
582
+ readonly useCeil: UnwrapRef<typeof import('./core/utils/src/math')['useCeil']>
583
+ readonly useChat: UnwrapRef<typeof import('./core/notifications/src/index')['useChat']>
584
+ readonly useClamp: UnwrapRef<typeof import('./core/utils/src/math')['useClamp']>
585
+ readonly useClipboard: UnwrapRef<typeof import('./core/utils/src/vendors')['useClipboard']>
586
+ readonly useCloned: UnwrapRef<typeof import('./core/utils/src/vendors')['useCloned']>
587
+ readonly useColorMode: UnwrapRef<typeof import('./core/utils/src/vendors')['useColorMode']>
588
+ readonly useConfirmDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useConfirmDialog']>
589
+ readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
590
+ readonly useCssVar: UnwrapRef<typeof import('./core/utils/src/vendors')['useCssVar']>
591
+ readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
592
+ readonly useCurrentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useCurrentElement']>
593
+ readonly useCycleList: UnwrapRef<typeof import('./core/utils/src/vendors')['useCycleList']>
594
+ readonly useDark: UnwrapRef<typeof import('./core/utils/src/vendors')['useDark']>
595
+ readonly useDateFormat: UnwrapRef<typeof import('./core/utils/src/vendors')['useDateFormat']>
596
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useDebouncedRefHistory']>
597
+ readonly useDeviceMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceMotion']>
598
+ readonly useDeviceOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceOrientation']>
599
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicePixelRatio']>
600
+ readonly useDevicesList: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicesList']>
601
+ readonly useDisplayMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useDisplayMedia']>
602
+ readonly useDocumentVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useDocumentVisibility']>
603
+ readonly useDraggable: UnwrapRef<typeof import('./core/utils/src/vendors')['useDraggable']>
604
+ readonly useDropZone: UnwrapRef<typeof import('./core/utils/src/vendors')['useDropZone']>
605
+ readonly useElementBounding: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementBounding']>
606
+ readonly useElementByPoint: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementByPoint']>
607
+ readonly useElementHover: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementHover']>
608
+ readonly useElementSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementSize']>
609
+ readonly useElementVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementVisibility']>
610
+ readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
611
+ readonly useEventBus: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventBus']>
612
+ readonly useEventListener: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventListener']>
613
+ readonly useEventSource: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventSource']>
614
+ readonly useEyeDropper: UnwrapRef<typeof import('./core/utils/src/vendors')['useEyeDropper']>
615
+ readonly useFavicon: UnwrapRef<typeof import('./core/utils/src/vendors')['useFavicon']>
616
+ readonly useFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['useFetch']>
617
+ readonly useFileDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileDialog']>
618
+ readonly useFileSystemAccess: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileSystemAccess']>
619
+ readonly useFloor: UnwrapRef<typeof import('./core/utils/src/math')['useFloor']>
620
+ readonly useFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocus']>
621
+ readonly useFocusWithin: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocusWithin']>
622
+ readonly useFps: UnwrapRef<typeof import('./core/utils/src/vendors')['useFps']>
623
+ readonly useFullscreen: UnwrapRef<typeof import('./core/utils/src/vendors')['useFullscreen']>
624
+ readonly useGamepad: UnwrapRef<typeof import('./core/utils/src/vendors')['useGamepad']>
625
+ readonly useGeolocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useGeolocation']>
626
+ readonly useIdle: UnwrapRef<typeof import('./core/utils/src/vendors')['useIdle']>
627
+ readonly useImage: UnwrapRef<typeof import('./core/utils/src/vendors')['useImage']>
628
+ readonly useInfiniteScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useInfiniteScroll']>
629
+ readonly useIntersectionObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useIntersectionObserver']>
630
+ readonly useKeyModifier: UnwrapRef<typeof import('./core/utils/src/vendors')['useKeyModifier']>
631
+ readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
632
+ readonly useLocalStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useLocalStorage']>
633
+ readonly useMagicKeys: UnwrapRef<typeof import('./core/utils/src/vendors')['useMagicKeys']>
634
+ readonly useManualRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useManualRefHistory']>
635
+ readonly useMath: UnwrapRef<typeof import('./core/utils/src/math')['useMath']>
636
+ readonly useMax: UnwrapRef<typeof import('./core/utils/src/math')['useMax']>
637
+ readonly useMediaControls: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaControls']>
638
+ readonly useMediaQuery: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaQuery']>
639
+ readonly useMemoize: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemoize']>
640
+ readonly useMemory: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemory']>
641
+ readonly useMin: UnwrapRef<typeof import('./core/utils/src/math')['useMin']>
642
+ readonly useMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['useMounted']>
643
+ readonly useMouse: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouse']>
644
+ readonly useMouseInElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouseInElement']>
645
+ readonly useMousePressed: UnwrapRef<typeof import('./core/utils/src/vendors')['useMousePressed']>
646
+ readonly useMutationObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useMutationObserver']>
647
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('./core/utils/src/vendors')['useNavigatorLanguage']>
648
+ readonly useNetwork: UnwrapRef<typeof import('./core/utils/src/vendors')['useNetwork']>
649
+ readonly useNotification: UnwrapRef<typeof import('./core/notifications/src/index')['useNotification']>
650
+ readonly useNow: UnwrapRef<typeof import('./core/utils/src/vendors')['useNow']>
651
+ readonly useObjectUrl: UnwrapRef<typeof import('./core/utils/src/vendors')['useObjectUrl']>
652
+ readonly useOffsetPagination: UnwrapRef<typeof import('./core/utils/src/vendors')['useOffsetPagination']>
653
+ readonly useOnline: UnwrapRef<typeof import('./core/utils/src/vendors')['useOnline']>
654
+ readonly usePageLeave: UnwrapRef<typeof import('./core/utils/src/vendors')['usePageLeave']>
655
+ readonly useParallax: UnwrapRef<typeof import('./core/utils/src/vendors')['useParallax']>
656
+ readonly useParentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useParentElement']>
657
+ readonly usePerformanceObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['usePerformanceObserver']>
658
+ readonly usePermission: UnwrapRef<typeof import('./core/utils/src/vendors')['usePermission']>
659
+ readonly usePointer: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointer']>
660
+ readonly usePointerLock: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerLock']>
661
+ readonly usePointerSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerSwipe']>
662
+ readonly usePrecision: UnwrapRef<typeof import('./core/utils/src/math')['usePrecision']>
663
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredColorScheme']>
664
+ readonly usePreferredContrast: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredContrast']>
665
+ readonly usePreferredDark: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredDark']>
666
+ readonly usePreferredLanguages: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredLanguages']>
667
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredReducedMotion']>
668
+ readonly usePrevious: UnwrapRef<typeof import('./core/utils/src/vendors')['usePrevious']>
669
+ readonly useProjection: UnwrapRef<typeof import('./core/utils/src/math')['useProjection']>
670
+ readonly useRafFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useRafFn']>
671
+ readonly useRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useRefHistory']>
672
+ readonly useResizeObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useResizeObserver']>
673
+ readonly useRound: UnwrapRef<typeof import('./core/utils/src/math')['useRound']>
674
+ readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
675
+ readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
676
+ readonly useSMS: UnwrapRef<typeof import('./core/notifications/src/index')['useSMS']>
677
+ readonly useScreenOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenOrientation']>
678
+ readonly useScreenSafeArea: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenSafeArea']>
679
+ readonly useScriptTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useScriptTag']>
680
+ readonly useScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useScroll']>
681
+ readonly useScrollLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useScrollLock']>
682
+ readonly useSearchEngine: UnwrapRef<typeof import('./core/search-engine/src/index')['useSearchEngine']>
683
+ readonly useSessionStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useSessionStorage']>
684
+ readonly useShare: UnwrapRef<typeof import('./core/utils/src/vendors')['useShare']>
685
+ readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
686
+ readonly useSorted: UnwrapRef<typeof import('./core/utils/src/vendors')['useSorted']>
687
+ readonly useSpeechRecognition: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechRecognition']>
688
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechSynthesis']>
689
+ readonly useStepper: UnwrapRef<typeof import('./core/utils/src/vendors')['useStepper']>
690
+ readonly useStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorage']>
691
+ readonly useStorageAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorageAsync']>
692
+ readonly useStyleTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useStyleTag']>
693
+ readonly useSum: UnwrapRef<typeof import('./core/utils/src/math')['useSum']>
694
+ readonly useSupported: UnwrapRef<typeof import('./core/utils/src/vendors')['useSupported']>
695
+ readonly useSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['useSwipe']>
696
+ readonly useTemplateRefsList: UnwrapRef<typeof import('./core/utils/src/vendors')['useTemplateRefsList']>
697
+ readonly useTextDirection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextDirection']>
698
+ readonly useTextSelection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextSelection']>
699
+ readonly useTextareaAutosize: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextareaAutosize']>
700
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useThrottledRefHistory']>
701
+ readonly useTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeAgo']>
702
+ readonly useTimeoutPoll: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeoutPoll']>
703
+ readonly useTimestamp: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimestamp']>
704
+ readonly useTitle: UnwrapRef<typeof import('./core/utils/src/vendors')['useTitle']>
705
+ readonly useTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['useTransition']>
706
+ readonly useTrunc: UnwrapRef<typeof import('./core/utils/src/math')['useTrunc']>
707
+ readonly useUrlSearchParams: UnwrapRef<typeof import('./core/utils/src/vendors')['useUrlSearchParams']>
708
+ readonly useUserMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useUserMedia']>
709
+ readonly useVModel: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModel']>
710
+ readonly useVModels: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModels']>
711
+ readonly useVibrate: UnwrapRef<typeof import('./core/utils/src/vendors')['useVibrate']>
712
+ readonly useVirtualList: UnwrapRef<typeof import('./core/utils/src/vendors')['useVirtualList']>
713
+ readonly useWakeLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useWakeLock']>
714
+ readonly useWebNotification: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebNotification']>
715
+ readonly useWebSocket: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebSocket']>
716
+ readonly useWebWorker: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorker']>
717
+ readonly useWebWorkerFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorkerFn']>
718
+ readonly useWindowFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowFocus']>
719
+ readonly useWindowScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowScroll']>
720
+ readonly useWindowSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowSize']>
721
+ readonly userConfigPath: UnwrapRef<typeof import('./core/path/src/index')['userConfigPath']>
722
+ readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
723
+ readonly validate: UnwrapRef<typeof import('./core/validation/src/validate')['validate']>
724
+ readonly validateUsername: UnwrapRef<typeof import('./core/validation/src/is')['validateUsername']>
725
+ readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
726
+ readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
727
+ readonly vi: UnwrapRef<typeof import('vitest')['vi']>
728
+ readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
729
+ readonly watch: UnwrapRef<typeof import('vue')['watch']>
730
+ readonly watchArray: UnwrapRef<typeof import('./core/utils/src/vendors')['watchArray']>
731
+ readonly watchAtMost: UnwrapRef<typeof import('./core/utils/src/vendors')['watchAtMost']>
732
+ readonly watchDebounced: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDebounced']>
733
+ readonly watchDeep: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDeep']>
734
+ readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
735
+ readonly watchIgnorable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchIgnorable']>
736
+ readonly watchImmediate: UnwrapRef<typeof import('./core/utils/src/vendors')['watchImmediate']>
737
+ readonly watchOnce: UnwrapRef<typeof import('./core/utils/src/vendors')['watchOnce']>
738
+ readonly watchPausable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchPausable']>
739
+ readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
740
+ readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
741
+ readonly watchThrottled: UnwrapRef<typeof import('./core/utils/src/vendors')['watchThrottled']>
742
+ readonly watchTriggerable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchTriggerable']>
743
+ readonly watchWithFilter: UnwrapRef<typeof import('./core/utils/src/vendors')['watchWithFilter']>
744
+ readonly whenever: UnwrapRef<typeof import('./core/utils/src/vendors')['whenever']>
745
+ readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
746
+ readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
747
+ readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
748
+ readonly z: UnwrapRef<typeof import('./core/validation/src/validate')['z']>
749
+ }
750
+ }
751
+ ]
5
752
  const $: typeof import('vue/macros')['$']
6
753
  const $computed: typeof import('vue/macros')['$computed']
7
754
  const $customRef: typeof import('vue/macros')['$customRef']
8
755
  const $ref: typeof import('vue/macros')['$ref']
9
756
  const $shallowRef: typeof import('vue/macros')['$shallowRef']
10
757
  const $toRef: typeof import('vue/macros')['$toRef']
11
- const // wip: typeof import('./core/realtime/src/index')['// wip']
12
758
  const Collection: typeof import('./core/objects/src/index')['Collection']
759
+ const CssEngine: typeof import('@stacksjs/ui')['CssEngine']
13
760
  const EffectScope: typeof import('vue')['EffectScope']
14
761
  const Err: typeof import('./core/error-handling/src/index')['Err']
762
+ const Head: typeof import('./core/utils/src/vendors')['Head']
763
+ const HeadVuePlugin: typeof import('./core/utils/src/vendors')['HeadVuePlugin']
15
764
  const Ok: typeof import('./core/error-handling/src/index')['Ok']
16
765
  const Result: typeof import('./core/error-handling/src/index')['Result']
17
766
  const ResultAsync: typeof import('./core/error-handling/src/index')['ResultAsync']
767
+ const Router: typeof import('./core/router/src/index')['Router']
768
+ const Store: typeof import('@stacksjs/ui')['Store']
769
+ const Type: typeof import('./core/validation/src/validate')['Type']
770
+ const UiEngine: typeof import('@stacksjs/ui')['UiEngine']
18
771
  const _dirname: typeof import('./core/storage/src/index')['_dirname']
19
772
  const actionsPath: typeof import('./core/path/src/index')['actionsPath']
773
+ const add: typeof import('./core/utils/src/currency')['add']
20
774
  const addIrregularRule: typeof import('./core/strings/src/pluralize')['addIrregularRule']
21
775
  const addPluralRule: typeof import('./core/strings/src/pluralize')['addPluralRule']
22
776
  const addSingularRule: typeof import('./core/strings/src/pluralize')['addSingularRule']
@@ -25,14 +779,17 @@ declare global {
25
779
  const afterEach: typeof import('vitest')['afterEach']
26
780
  const aiPath: typeof import('./core/path/src/index')['aiPath']
27
781
  const aliasPath: typeof import('./core/path/src/index')['aliasPath']
28
- const all: typeof import('./core/events/src/index')['all']
29
- const app: typeof import('../config/app')['app']
782
+ const allocate: typeof import('./core/utils/src/currency')['allocate']
783
+ const and: typeof import('./core/utils/src/math')['and']
784
+ const app: typeof import('../config/app')['default']
785
+ const appPath: typeof import('./core/path/src/index')['appPath']
30
786
  const arraysPath: typeof import('./core/path/src/index')['arraysPath']
31
- const assert: typeof import('./core/utils/src/index')['assert']
32
- const asyncComputed: typeof import('@vueuse/core')['asyncComputed']
787
+ const assert: typeof import('vitest')['assert']
788
+ const asyncComputed: typeof import('./core/utils/src/vendors')['asyncComputed']
33
789
  const at: typeof import('./core/arrays/src/index')['at']
790
+ const auth: typeof import('./core/auth/src/index')['auth']
34
791
  const authPath: typeof import('./core/path/src/index')['authPath']
35
- const autoResetRef: typeof import('@vueuse/core')['autoResetRef']
792
+ const autoResetRef: typeof import('./core/utils/src/vendors')['autoResetRef']
36
793
  const base64Encode: typeof import('./core/security/src/hash')['base64Encode']
37
794
  const base64Verify: typeof import('./core/security/src/hash')['base64Verify']
38
795
  const basename: typeof import('./core/path/src/index')['basename']
@@ -41,32 +798,43 @@ declare global {
41
798
  const bcryptVerify: typeof import('./core/security/src/hash')['bcryptVerify']
42
799
  const beforeAll: typeof import('vitest')['beforeAll']
43
800
  const beforeEach: typeof import('vitest')['beforeEach']
801
+ const breakpointsAntDesign: typeof import('./core/utils/src/vendors')['breakpointsAntDesign']
802
+ const breakpointsBootstrapV5: typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']
803
+ const breakpointsMasterCss: typeof import('./core/utils/src/vendors')['breakpointsMasterCss']
804
+ const breakpointsQuasar: typeof import('./core/utils/src/vendors')['breakpointsQuasar']
805
+ const breakpointsSematic: typeof import('./core/utils/src/vendors')['breakpointsSematic']
806
+ const breakpointsTailwind: typeof import('./core/utils/src/vendors')['breakpointsTailwind']
807
+ const breakpointsVuetify: typeof import('./core/utils/src/vendors')['breakpointsVuetify']
44
808
  const buildEnginePath: typeof import('./core/path/src/index')['buildEnginePath']
45
809
  const buildEntriesPath: typeof import('./core/path/src/index')['buildEntriesPath']
46
810
  const buildPath: typeof import('./core/path/src/index')['buildPath']
47
- const cache: typeof import('../config/cache')['cache']
811
+ const cache: typeof import('../config/cache')['default']
48
812
  const cachePath: typeof import('./core/path/src/index')['cachePath']
49
813
  const calculatePagination: typeof import('./core/search-engine/src/index')['calculatePagination']
50
814
  const camelCase: typeof import('./core/strings/src/case')['camelCase']
51
815
  const capitalCase: typeof import('./core/strings/src/case')['capitalCase']
52
816
  const capitalize: typeof import('./core/strings/src/utils')['capitalize']
817
+ const cdn: typeof import('../config/cdn')['default']
53
818
  const chai: typeof import('vitest')['chai']
54
- const chat: typeof import('./core/notifications/src/index')['chat']
55
819
  const chatPath: typeof import('./core/path/src/index')['chatPath']
56
- const clamp: typeof import('@vueuse/shared')['clamp']
820
+ const clamp: typeof import('./core/utils/src/math')['clamp']
57
821
  const clampArrayRange: typeof import('./core/arrays/src/index')['clampArrayRange']
58
822
  const clearUndefined: typeof import('./core/objects/src/index')['clearUndefined']
823
+ const cli: typeof import('../config/cli')['default']
59
824
  const cliPath: typeof import('./core/path/src/index')['cliPath']
60
825
  const client: typeof import('./core/search-engine/src/index')['client']
826
+ const cloneFnJSON: typeof import('./core/utils/src/vendors')['cloneFnJSON']
827
+ const cloudPath: typeof import('./core/path/src/index')['cloudPath']
61
828
  const collect: typeof import('./core/objects/src/index')['collect']
62
829
  const collectionsPath: typeof import('./core/path/src/index')['collectionsPath']
830
+ const compare: typeof import('./core/utils/src/currency')['compare']
63
831
  const componentsPath: typeof import('./core/path/src/index')['componentsPath']
64
832
  const computed: typeof import('vue')['computed']
65
- const computedAsync: typeof import('@vueuse/core')['computedAsync']
66
- const computedEager: typeof import('@vueuse/core')['computedEager']
67
- const computedInject: typeof import('@vueuse/core')['computedInject']
68
- const computedWithControl: typeof import('@vueuse/core')['computedWithControl']
69
- const config: typeof import('./core/utils/src/helpers')['config']
833
+ const computedAsync: typeof import('./core/utils/src/vendors')['computedAsync']
834
+ const computedEager: typeof import('./core/utils/src/vendors')['computedEager']
835
+ const computedInject: typeof import('./core/utils/src/vendors')['computedInject']
836
+ const computedWithControl: typeof import('./core/utils/src/vendors')['computedWithControl']
837
+ const config: typeof import('./core/notifications/src/tailwind.config')['config']
70
838
  const configPath: typeof import('./core/path/src/index')['configPath']
71
839
  const constantCase: typeof import('./core/strings/src/case')['constantCase']
72
840
  const contains: typeof import('./core/arrays/src/index')['contains']
@@ -74,81 +842,126 @@ declare global {
74
842
  const containsAny: typeof import('./core/arrays/src/index')['containsAny']
75
843
  const containsNone: typeof import('./core/arrays/src/index')['containsNone']
76
844
  const containsOnly: typeof import('./core/arrays/src/index')['containsOnly']
77
- const controlledComputed: typeof import('@vueuse/core')['controlledComputed']
78
- const controlledRef: typeof import('@vueuse/core')['controlledRef']
845
+ const controlledComputed: typeof import('./core/utils/src/vendors')['controlledComputed']
846
+ const controlledRef: typeof import('./core/utils/src/vendors')['controlledRef']
847
+ const convert: typeof import('./core/utils/src/currency')['convert']
79
848
  const copyFolder: typeof import('./core/storage/src/index')['copyFolder']
80
849
  const corePath: typeof import('./core/path/src/index')['corePath']
81
850
  const count: typeof import('../functions/counter')['count']
82
851
  const createApp: typeof import('vue')['createApp']
83
852
  const createControlledPromise: typeof import('./core/utils/src/promise')['createControlledPromise']
84
- const createEventHook: typeof import('@vueuse/core')['createEventHook']
853
+ const createEventHook: typeof import('./core/utils/src/vendors')['createEventHook']
854
+ const createFetch: typeof import('./core/utils/src/vendors')['createFetch']
85
855
  const createFolder: typeof import('./core/storage/src/index')['createFolder']
86
- const createGenericProjection: typeof import('@vueuse/math')['createGenericProjection']
87
- const createGlobalState: typeof import('@vueuse/core')['createGlobalState']
88
- const createInjectionState: typeof import('@vueuse/core')['createInjectionState']
89
- const createProjection: typeof import('@vueuse/math')['createProjection']
856
+ const createGenericProjection: typeof import('./core/utils/src/math')['createGenericProjection']
857
+ const createGlobalState: typeof import('./core/utils/src/vendors')['createGlobalState']
858
+ const createHead: typeof import('./core/utils/src/vendors')['createHead']
859
+ const createInjectionState: typeof import('./core/utils/src/vendors')['createInjectionState']
860
+ const createProjection: typeof import('./core/utils/src/math')['createProjection']
90
861
  const createPromiseLock: typeof import('./core/utils/src/promise')['createPromiseLock']
91
- const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn']
92
- const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable']
862
+ const createReactiveFn: typeof import('./core/utils/src/vendors')['createReactiveFn']
863
+ const createReusableTemplate: typeof import('./core/utils/src/vendors')['createReusableTemplate']
864
+ const createSharedComposable: typeof import('./core/utils/src/vendors')['createSharedComposable']
93
865
  const createSingletonPromise: typeof import('./core/utils/src/promise')['createSingletonPromise']
94
- const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn']
866
+ const createTemplatePromise: typeof import('./core/utils/src/vendors')['createTemplatePromise']
867
+ const createUnrefFn: typeof import('./core/utils/src/vendors')['createUnrefFn']
95
868
  const currentPage: typeof import('./core/search-engine/src/index')['currentPage']
96
869
  const customElementsDataPath: typeof import('./core/path/src/index')['customElementsDataPath']
97
870
  const customRef: typeof import('vue')['customRef']
871
+ const customStorageEventName: typeof import('./core/utils/src/vendors')['customStorageEventName']
98
872
  const dashboardPath: typeof import('./core/path/src/index')['dashboardPath']
99
- const database: typeof import('../config/database')['database']
873
+ const database: typeof import('../config/database')['default']
100
874
  const databasePath: typeof import('./core/path/src/index')['databasePath']
101
875
  const dd: typeof import('./core/logging/src/index')['dd']
102
- const debounce: typeof import('./core/utils/src/vendor')['debounce']
103
- const debouncedRef: typeof import('@vueuse/core')['debouncedRef']
104
- const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch']
105
- const debug: typeof import('./core/logging/src/index')['debug']
876
+ const debounce: typeof import('./core/utils/src/debounce')['debounce']
877
+ const debouncedRef: typeof import('./core/utils/src/vendors')['debouncedRef']
878
+ const debouncedWatch: typeof import('./core/utils/src/vendors')['debouncedWatch']
879
+ const debug: typeof import('../config/debug')['default']
106
880
  const decrypt: typeof import('./core/security/src/crypt')['decrypt']
107
881
  const deepMerge: typeof import('./core/objects/src/index')['deepMerge']
882
+ const defaultDocument: typeof import('./core/utils/src/vendors')['defaultDocument']
883
+ const defaultLocation: typeof import('./core/utils/src/vendors')['defaultLocation']
884
+ const defaultNavigator: typeof import('./core/utils/src/vendors')['defaultNavigator']
885
+ const defaultWindow: typeof import('./core/utils/src/vendors')['defaultWindow']
886
+ const defineApp: typeof import('./core/utils/src/config')['defineApp']
108
887
  const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
888
+ const defineCache: typeof import('./core/utils/src/config')['defineCache']
889
+ const defineCdn: typeof import('./core/utils/src/config')['defineCdn']
890
+ const defineCli: typeof import('./core/utils/src/config')['defineCli']
109
891
  const defineComponent: typeof import('vue')['defineComponent']
892
+ const defineCronJobsConfig: typeof import('./core/utils/src/config')['defineCronJobsConfig']
893
+ const defineDatabase: typeof import('./core/utils/src/config')['defineDatabase']
894
+ const defineDebugConfig: typeof import('./core/utils/src/config')['defineDebugConfig']
895
+ const defineDns: typeof import('./core/utils/src/config')['defineDns']
896
+ const defineEmailConfig: typeof import('./core/utils/src/config')['defineEmailConfig']
897
+ const defineEvents: typeof import('./core/utils/src/config')['defineEvents']
898
+ const defineGit: typeof import('./core/utils/src/config')['defineGit']
899
+ const defineHashing: typeof import('./core/utils/src/config')['defineHashing']
900
+ const defineLibrary: typeof import('./core/utils/src/config')['defineLibrary']
901
+ const defineModel: typeof import('./core/utils/src/config')['defineModel']
902
+ const defineNotification: typeof import('./core/utils/src/config')['defineNotification']
903
+ const definePage: typeof import('./core/utils/src/config')['definePage']
904
+ const definePayment: typeof import('./core/utils/src/config')['definePayment']
905
+ const defineSearchEngine: typeof import('./core/utils/src/config')['defineSearchEngine']
906
+ const defineServices: typeof import('./core/utils/src/config')['defineServices']
907
+ const defineStorage: typeof import('./core/utils/src/config')['defineStorage']
908
+ const defineUi: typeof import('./core/utils/src/config')['defineUi']
909
+ const del: typeof import('./core/utils/src/delete')['del']
110
910
  const deleteEmptyFolders: typeof import('./core/storage/src/index')['deleteEmptyFolders']
111
911
  const deleteFiles: typeof import('./core/storage/src/index')['deleteFiles']
112
912
  const deleteFolder: typeof import('./core/storage/src/index')['deleteFolder']
113
913
  const delimiter: typeof import('./core/path/src/index')['delimiter']
114
- const deploy: typeof import('../config/deploy')['deploy']
115
914
  const describe: typeof import('vitest')['describe']
116
915
  const desktopPath: typeof import('./core/path/src/index')['desktopPath']
117
916
  const detectIndent: typeof import('./core/utils/src/helpers')['detectIndent']
118
917
  const detectNewline: typeof import('./core/utils/src/helpers')['detectNewline']
918
+ const determineDebugLevel: typeof import('./core/utils/src/helpers')['determineDebugLevel']
119
919
  const determineResetPreset: typeof import('./core/utils/src/helpers')['determineResetPreset']
120
920
  const determineState: typeof import('./core/search-engine/src/helpers')['determineState']
921
+ const developmentPath: typeof import('./core/path/src/index')['developmentPath']
922
+ const dinero: typeof import('./core/utils/src/currency')['dinero']
121
923
  const dirname: typeof import('./core/path/src/index')['dirname']
122
- const dispatch: typeof import('./core/events/src/index')['dispatch']
924
+ const discord: typeof import('./core/chat/src/index')['discord']
925
+ const dns: typeof import('../config/dns')['default']
123
926
  const docs: typeof import('../config/docs')['default']
124
927
  const docsPath: typeof import('./core/path/src/index')['docsPath']
125
928
  const doesFolderExist: typeof import('./core/storage/src/index')['doesFolderExist']
929
+ const doesNotContain: typeof import('./core/arrays/src/index')['doesNotContain']
126
930
  const domainsPath: typeof import('./core/path/src/index')['domainsPath']
127
931
  const dotCase: typeof import('./core/strings/src/case')['dotCase']
128
- const driversPath: typeof import('./core/path/src/index')['driversPath']
129
932
  const dump: typeof import('./core/logging/src/index')['dump']
130
- const eagerComputed: typeof import('@vueuse/core')['eagerComputed']
933
+ const dynamodb: typeof import('./core/cache/src/index')['dynamodb']
934
+ const eagerComputed: typeof import('./core/utils/src/vendors')['eagerComputed']
131
935
  const effectScope: typeof import('vue')['effectScope']
132
- const email: typeof import('./core/notifications/src/index')['email']
936
+ const email: typeof import('../config/email')['default']
133
937
  const emailPath: typeof import('./core/path/src/index')['emailPath']
134
938
  const encrypt: typeof import('./core/security/src/crypt')['encrypt']
135
939
  const ensurePrefix: typeof import('./core/strings/src/utils')['ensurePrefix']
136
940
  const ensureSuffix: typeof import('./core/strings/src/utils')['ensureSuffix']
137
- const env: typeof import('./core/utils/src/helpers')['env']
941
+ const env: typeof import('./core/utils/src/config')['env']
942
+ const envVariables: typeof import('./core/validation/src/validate')['envVariables']
943
+ const equal: typeof import('./core/utils/src/currency')['equal']
138
944
  const err: typeof import('./core/error-handling/src/index')['err']
139
945
  const errAsync: typeof import('./core/error-handling/src/index')['errAsync']
140
946
  const errorHandlingPath: typeof import('./core/path/src/index')['errorHandlingPath']
141
- const events: typeof import('./core/events/src/index')['events']
947
+ const eslint: typeof import('./core/lint/src/index')['eslint']
948
+ const events: typeof import('../config/events')['default']
142
949
  const eventsPath: typeof import('./core/path/src/index')['eventsPath']
143
950
  const examplesPath: typeof import('./core/path/src/index')['examplesPath']
951
+ const executeTransition: typeof import('./core/utils/src/vendors')['executeTransition']
144
952
  const expect: typeof import('vitest')['expect']
145
- const extendRef: typeof import('@vueuse/core')['extendRef']
953
+ const expo: typeof import('./core/push/src/index')['expo']
954
+ const extendRef: typeof import('./core/utils/src/vendors')['extendRef']
146
955
  const extname: typeof import('./core/path/src/index')['extname']
956
+ const fakerPath: typeof import('./core/path/src/index')['fakerPath']
957
+ const fcm: typeof import('./core/push/src/index')['fcm']
958
+ const feature: typeof import('./core/testing/src/index')['feature']
147
959
  const filesystem: typeof import('./core/storage/src/index')['filesystem']
148
960
  const filterName: typeof import('./core/search-engine/src/index')['filterName']
149
961
  const filters: typeof import('./core/search-engine/src/index')['filters']
150
962
  const flattenArrayable: typeof import('./core/arrays/src/index')['flattenArrayable']
151
963
  const format: typeof import('./core/path/src/index')['format']
964
+ const formatTimeAgo: typeof import('./core/utils/src/vendors')['formatTimeAgo']
152
965
  const frameworkPath: typeof import('./core/path/src/index')['frameworkPath']
153
966
  const frameworkVersion: typeof import('./core/utils/src/helpers')['frameworkVersion']
154
967
  const fromPromise: typeof import('./core/error-handling/src/index')['fromPromise']
@@ -156,145 +969,171 @@ declare global {
156
969
  const fromThrowable: typeof import('./core/error-handling/src/index')['fromThrowable']
157
970
  const functionsPath: typeof import('./core/path/src/index')['functionsPath']
158
971
  const generateAppKey: typeof import('./core/security/src/key')['generateAppKey']
972
+ const generateFactoryFile: typeof import('./core/database/src/factory/index')['generateFactoryFile']
159
973
  const getCurrentInstance: typeof import('vue')['getCurrentInstance']
160
974
  const getCurrentScope: typeof import('vue')['getCurrentScope']
161
- const getTypeName: typeof import('./core/utils/src/index')['getTypeName']
162
- const git: typeof import('../config/git')['git']
975
+ const getSSRHandler: typeof import('./core/utils/src/vendors')['getSSRHandler']
976
+ const getTypeName: typeof import('./core/utils/src/base')['getTypeName']
977
+ const git: typeof import('../config/git')['default']
163
978
  const gitPath: typeof import('./core/path/src/index')['gitPath']
164
979
  const goToNextPage: typeof import('./core/search-engine/src/index')['goToNextPage']
165
980
  const goToPage: typeof import('./core/search-engine/src/index')['goToPage']
166
981
  const goToPrevPage: typeof import('./core/search-engine/src/index')['goToPrevPage']
982
+ const greaterThan: typeof import('./core/utils/src/currency')['greaterThan']
983
+ const greaterThanOrEqual: typeof import('./core/utils/src/currency')['greaterThanOrEqual']
984
+ const gupshup: typeof import('./core/sms/src/index')['gupshup']
167
985
  const h: typeof import('vue')['h']
168
986
  const hasComponents: typeof import('./core/storage/src/index')['hasComponents']
169
987
  const hasFiles: typeof import('./core/storage/src/index')['hasFiles']
170
988
  const hasFunctions: typeof import('./core/storage/src/index')['hasFunctions']
171
- const hasOwn: typeof import('@vueuse/shared')['hasOwn']
172
989
  const hasOwnProperty: typeof import('./core/objects/src/index')['hasOwnProperty']
173
990
  const hasScript: typeof import('./core/utils/src/helpers')['hasScript']
174
- const hashing: typeof import('../config/hashing')['hashing']
991
+ const hasSubUnits: typeof import('./core/utils/src/currency')['hasSubUnits']
992
+ const hashing: typeof import('../config/hashing')['default']
993
+ const haveSameAmount: typeof import('./core/utils/src/currency')['haveSameAmount']
994
+ const haveSameCurrency: typeof import('./core/utils/src/currency')['haveSameCurrency']
175
995
  const headerCase: typeof import('./core/strings/src/case')['headerCase']
176
996
  const healthPath: typeof import('./core/path/src/index')['healthPath']
177
997
  const hits: typeof import('./core/search-engine/src/index')['hits']
178
- const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch']
998
+ const ignorableWatch: typeof import('./core/utils/src/vendors')['ignorableWatch']
179
999
  const increment: typeof import('../functions/counter')['increment']
180
1000
  const index: typeof import('./core/search-engine/src/index')['index']
181
1001
  const inject: typeof import('vue')['inject']
182
1002
  const isAbsolute: typeof import('./core/path/src/index')['isAbsolute']
183
- const isAlpha: typeof import('./core/strings/src/validation')['isAlpha']
184
- const isAlphanumeric: typeof import('./core/strings/src/validation')['isAlphanumeric']
1003
+ const isAlpha: typeof import('./core/validation/src/is')['isAlpha']
1004
+ const isAlphanumeric: typeof import('./core/validation/src/is')['isAlphanumeric']
185
1005
  const isAppKeySet: typeof import('./core/utils/src/helpers')['isAppKeySet']
186
- const isAscii: typeof import('./core/strings/src/validation')['isAscii']
187
- const isBase32: typeof import('./core/strings/src/validation')['isBase32']
188
- const isBase64: typeof import('./core/strings/src/validation')['isBase64']
189
- const isBoolean: typeof import('./core/utils/src/is')['isBoolean']
190
- const isBrowser: typeof import('./core/utils/src/is')['isBrowser']
191
- const isByteLength: typeof import('./core/strings/src/validation')['isByteLength']
192
- const isClient: typeof import('@vueuse/shared')['isClient']
193
- const isCreditCard: typeof import('./core/strings/src/validation')['isCreditCard']
194
- const isCurrency: typeof import('./core/strings/src/validation')['isCurrency']
1006
+ const isArray: typeof import('./core/validation/src/is')['isArray']
1007
+ const isAscii: typeof import('./core/validation/src/is')['isAscii']
1008
+ const isBase32: typeof import('./core/validation/src/is')['isBase32']
1009
+ const isBase64: typeof import('./core/validation/src/is')['isBase64']
1010
+ const isBoolean: typeof import('./core/validation/src/is')['isBoolean']
1011
+ const isBrowser: typeof import('./core/validation/src/is')['isBrowser']
1012
+ const isByteLength: typeof import('./core/validation/src/is')['isByteLength']
1013
+ const isCreditCard: typeof import('./core/validation/src/is')['isCreditCard']
1014
+ const isCurrency: typeof import('./core/validation/src/is')['isCurrency']
195
1015
  const isDark: typeof import('../functions/dark')['isDark']
196
- const isDataURI: typeof import('./core/strings/src/validation')['isDataURI']
197
- const isDate: typeof import('./core/strings/src/validation')['isDate']
1016
+ const isDataURI: typeof import('./core/validation/src/is')['isDataURI']
1017
+ const isDate: typeof import('./core/validation/src/is')['isDate']
198
1018
  const isDeepEqual: typeof import('./core/utils/src/equal')['isDeepEqual']
199
- const isDef: typeof import('./core/utils/src/is')['isDef']
200
- const isDefined: typeof import('@vueuse/core')['isDefined']
201
- const isEmail: typeof import('./core/strings/src/validation')['isEmail']
202
- const isFQDN: typeof import('./core/strings/src/validation')['isFQDN']
1019
+ const isDef: typeof import('./core/validation/src/is')['isDef']
1020
+ const isDefined: typeof import('./core/utils/src/vendors')['isDefined']
1021
+ const isEmail: typeof import('./core/validation/src/is')['isEmail']
1022
+ const isEven: typeof import('./core/validation/src/is')['isEven']
1023
+ const isEvenOrOdd: typeof import('./core/validation/src/is')['isEvenOrOdd']
1024
+ const isFQDN: typeof import('./core/validation/src/is')['isFQDN']
203
1025
  const isFile: typeof import('./core/storage/src/index')['isFile']
1026
+ const isFloat: typeof import('./core/validation/src/is')['isFloat']
204
1027
  const isFolder: typeof import('./core/storage/src/index')['isFolder']
205
- const isFullWidth: typeof import('./core/strings/src/validation')['isFullWidth']
206
- const isFunction: typeof import('./core/utils/src/is')['isFunction']
207
- const isHSL: typeof import('./core/strings/src/validation')['isHSL']
208
- const isHalfWidth: typeof import('./core/strings/src/validation')['isHalfWidth']
209
- const isHash: typeof import('./core/strings/src/validation')['isHash']
210
- const isHexColor: typeof import('./core/strings/src/validation')['isHexColor']
211
- const isHexadecimal: typeof import('./core/strings/src/validation')['isHexadecimal']
212
- const isIBAN: typeof import('./core/strings/src/validation')['isIBAN']
213
- const isIOS: typeof import('@vueuse/shared')['isIOS']
214
- const isIP: typeof import('./core/strings/src/validation')['isIP']
215
- const isIPRange: typeof import('./core/strings/src/validation')['isIPRange']
216
- const isISBN: typeof import('./core/strings/src/validation')['isISBN']
217
- const isISIN: typeof import('./core/strings/src/validation')['isISIN']
218
- const isISO31661Alpha2: typeof import('./core/strings/src/validation')['isISO31661Alpha2']
219
- const isISO31661Alpha3: typeof import('./core/strings/src/validation')['isISO31661Alpha3']
220
- const isISO8601: typeof import('./core/strings/src/validation')['isISO8601']
221
- const isISRC: typeof import('./core/strings/src/validation')['isISRC']
222
- const isISSN: typeof import('./core/strings/src/validation')['isISSN']
223
- const isIdentityCard: typeof import('./core/strings/src/validation')['isIdentityCard']
224
- const isJSON: typeof import('./core/strings/src/validation')['isJSON']
225
- const isJWT: typeof import('./core/strings/src/validation')['isJWT']
1028
+ const isFullWidth: typeof import('./core/validation/src/is')['isFullWidth']
1029
+ const isFunction: typeof import('./core/validation/src/is')['isFunction']
1030
+ const isHSL: typeof import('./core/validation/src/is')['isHSL']
1031
+ const isHalfWidth: typeof import('./core/validation/src/is')['isHalfWidth']
1032
+ const isHash: typeof import('./core/validation/src/is')['isHash']
1033
+ const isHexColor: typeof import('./core/validation/src/is')['isHexColor']
1034
+ const isHexadecimal: typeof import('./core/validation/src/is')['isHexadecimal']
1035
+ const isIBAN: typeof import('./core/validation/src/is')['isIBAN']
1036
+ const isIP: typeof import('./core/validation/src/is')['isIP']
1037
+ const isIPRange: typeof import('./core/validation/src/is')['isIPRange']
1038
+ const isISBN: typeof import('./core/validation/src/is')['isISBN']
1039
+ const isISIN: typeof import('./core/validation/src/is')['isISIN']
1040
+ const isISO31661Alpha2: typeof import('./core/validation/src/is')['isISO31661Alpha2']
1041
+ const isISO31661Alpha3: typeof import('./core/validation/src/is')['isISO31661Alpha3']
1042
+ const isISO8601: typeof import('./core/validation/src/is')['isISO8601']
1043
+ const isISRC: typeof import('./core/validation/src/is')['isISRC']
1044
+ const isISSN: typeof import('./core/validation/src/is')['isISSN']
1045
+ const isIdentityCard: typeof import('./core/validation/src/is')['isIdentityCard']
1046
+ const isInteger: typeof import('./core/validation/src/is')['isInteger']
1047
+ const isIntegerOrFloat: typeof import('./core/validation/src/is')['isIntegerOrFloat']
1048
+ const isJSON: typeof import('./core/validation/src/is')['isJSON']
1049
+ const isJWT: typeof import('./core/validation/src/is')['isJWT']
226
1050
  const isKeyOf: typeof import('./core/objects/src/index')['isKeyOf']
227
- const isLatLong: typeof import('./core/strings/src/validation')['isLatLong']
228
- const isLatitude: typeof import('./core/strings/src/validation')['isLatitude']
229
- const isLongitude: typeof import('./core/strings/src/validation')['isLongitude']
230
- const isMACAddress: typeof import('./core/strings/src/validation')['isMACAddress']
1051
+ const isLatLong: typeof import('./core/validation/src/is')['isLatLong']
1052
+ const isLatitude: typeof import('./core/validation/src/is')['isLatitude']
1053
+ const isLongitude: typeof import('./core/validation/src/is')['isLongitude']
1054
+ const isMACAddress: typeof import('./core/validation/src/is')['isMACAddress']
231
1055
  const isManifest: typeof import('./core/utils/src/helpers')['isManifest']
232
- const isMap: typeof import('./core/utils/src/is')['isMap']
233
- const isMimeType: typeof import('./core/strings/src/validation')['isMimeType']
234
- const isMobilePhone: typeof import('./core/strings/src/validation')['isMobilePhone']
235
- const isMongoId: typeof import('./core/strings/src/validation')['isMongoId']
236
- const isNumber: typeof import('./core/utils/src/is')['isNumber']
237
- const isNumeric: typeof import('./core/strings/src/validation')['isNumeric']
238
- const isObject: typeof import('./core/utils/src/is')['isObject']
1056
+ const isMap: typeof import('./core/validation/src/is')['isMap']
1057
+ const isMimeType: typeof import('./core/validation/src/is')['isMimeType']
1058
+ const isMobilePhone: typeof import('./core/validation/src/is')['isMobilePhone']
1059
+ const isMongoId: typeof import('./core/validation/src/is')['isMongoId']
1060
+ const isNegative: typeof import('./core/validation/src/is')['isNegative']
1061
+ const isNull: typeof import('./core/validation/src/is')['isNull']
1062
+ const isNumber: typeof import('./core/validation/src/is')['isNumber']
1063
+ const isNumeric: typeof import('./core/validation/src/is')['isNumeric']
1064
+ const isObject: typeof import('./core/validation/src/is')['isObject']
1065
+ const isOdd: typeof import('./core/validation/src/is')['isOdd']
239
1066
  const isOptionalString: typeof import('./core/utils/src/helpers')['isOptionalString']
240
1067
  const isPlural: typeof import('./core/strings/src/pluralize')['isPlural']
241
- const isPostalCode: typeof import('./core/strings/src/validation')['isPostalCode']
1068
+ const isPositive: typeof import('./core/validation/src/is')['isPositive']
1069
+ const isPositiveOrNegative: typeof import('./core/validation/src/is')['isPositiveOrNegative']
1070
+ const isPostalCode: typeof import('./core/validation/src/is')['isPostalCode']
1071
+ const isPrimitive: typeof import('./core/validation/src/is')['isPrimitive']
242
1072
  const isProjectCreated: typeof import('./core/utils/src/helpers')['isProjectCreated']
243
- const isPromise: typeof import('./core/utils/src/is')['isPromise']
1073
+ const isPromise: typeof import('./core/validation/src/is')['isPromise']
244
1074
  const isProxy: typeof import('vue')['isProxy']
245
1075
  const isReactive: typeof import('vue')['isReactive']
246
1076
  const isReadonly: typeof import('vue')['isReadonly']
247
1077
  const isRef: typeof import('vue')['isRef']
248
- const isServer: typeof import('./core/utils/src/is')['isServer']
249
- const isSet: typeof import('./core/utils/src/is')['isSet']
1078
+ const isRegExp: typeof import('./core/validation/src/is')['isRegExp']
1079
+ const isServer: typeof import('./core/validation/src/is')['isServer']
1080
+ const isSet: typeof import('./core/validation/src/is')['isSet']
250
1081
  const isSingular: typeof import('./core/strings/src/pluralize')['isSingular']
251
- const isString: typeof import('./core/utils/src/is')['isString']
252
- const isStrongPassword: typeof import('./core/strings/src/validation')['isStrongPassword']
1082
+ const isString: typeof import('./core/validation/src/is')['isString']
1083
+ const isStrongPassword: typeof import('./core/validation/src/is')['isStrongPassword']
1084
+ const isSymbol: typeof import('./core/validation/src/is')['isSymbol']
253
1085
  const isTruthy: typeof import('./core/utils/src/guards')['isTruthy']
254
- const isURL: typeof import('./core/strings/src/validation')['isURL']
255
- const isUUID: typeof import('./core/strings/src/validation')['isUUID']
256
- const isWindow: typeof import('./core/utils/src/is')['isWindow']
1086
+ const isURL: typeof import('./core/validation/src/is')['isURL']
1087
+ const isUUID: typeof import('./core/validation/src/is')['isUUID']
1088
+ const isUndefined: typeof import('./core/validation/src/is')['isUndefined']
1089
+ const isWindow: typeof import('./core/validation/src/is')['isWindow']
1090
+ const isZero: typeof import('./core/utils/src/currency')['isZero']
257
1091
  const it: typeof import('vitest')['it']
258
1092
  const join: typeof import('./core/path/src/index')['join']
259
1093
  const kebabCase: typeof import('./core/strings/src/case')['kebabCase']
260
1094
  const langPath: typeof import('./core/path/src/index')['langPath']
261
1095
  const last: typeof import('./core/arrays/src/index')['last']
262
1096
  const lastPageNumber: typeof import('./core/search-engine/src/index')['lastPageNumber']
263
- const library: typeof import('../config/library')['library']
1097
+ const lessThan: typeof import('./core/utils/src/currency')['lessThan']
1098
+ const lessThanOrEqual: typeof import('./core/utils/src/currency')['lessThanOrEqual']
1099
+ const library: typeof import('../config/library')['default']
264
1100
  const libraryEntryPath: typeof import('./core/path/src/index')['libraryEntryPath']
265
1101
  const lintPath: typeof import('./core/path/src/index')['lintPath']
266
- const listen: typeof import('./core/events/src/index')['listen']
267
1102
  const log: typeof import('./core/logging/src/index')['log']
268
1103
  const loggingPath: typeof import('./core/path/src/index')['loggingPath']
269
- const logicAnd: typeof import('@vueuse/math')['logicAnd']
270
- const logicNot: typeof import('@vueuse/math')['logicNot']
271
- const logicOr: typeof import('@vueuse/math')['logicOr']
272
- const loop: typeof import('./core/utils/src/index')['loop']
273
- const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable']
1104
+ const logicNot: typeof import('./core/utils/src/math')['logicNot']
1105
+ const logicOr: typeof import('./core/utils/src/math')['logicOr']
1106
+ const loop: typeof import('./core/utils/src/base')['loop']
274
1107
  const makeHash: typeof import('./core/security/src/hash')['makeHash']
1108
+ const mapGamepadToXbox360Controller: typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']
275
1109
  const markRaw: typeof import('vue')['markRaw']
1110
+ const maximum: typeof import('./core/utils/src/currency')['maximum']
276
1111
  const md5Encode: typeof import('./core/security/src/hash')['md5Encode']
1112
+ const memcached: typeof import('./core/cache/src/index')['memcached']
277
1113
  const mergeArrayable: typeof import('./core/arrays/src/index')['mergeArrayable']
278
- const mitt: typeof import('./core/events/src/index')['mitt']
1114
+ const migrate: typeof import('./core/database/src/migrations/index')['migrate']
1115
+ const minimum: typeof import('./core/utils/src/currency')['minimum']
1116
+ const modelsPath: typeof import('./core/path/src/index')['modelsPath']
279
1117
  const modulesPath: typeof import('./core/path/src/index')['modulesPath']
1118
+ const money: typeof import('./core/utils/src/currency')['money']
280
1119
  const move: typeof import('./core/arrays/src/index')['move']
1120
+ const multiply: typeof import('./core/utils/src/currency')['multiply']
1121
+ const nexmo: typeof import('./core/sms/src/index')['nexmo']
281
1122
  const nextTick: typeof import('vue')['nextTick']
282
1123
  const noCase: typeof import('./core/strings/src/case')['noCase']
283
1124
  const noNull: typeof import('./core/utils/src/guards')['noNull']
284
- const noop: typeof import('./core/utils/src/index')['noop']
285
1125
  const normalize: typeof import('./core/path/src/index')['normalize']
1126
+ const normalizeScale: typeof import('./core/utils/src/currency')['normalizeScale']
286
1127
  const normalizeString: typeof import('./core/path/src/index')['normalizeString']
287
- const notNullish: typeof import('./core/utils/src/guards')['notNullish']
1128
+ const not: typeof import('./core/utils/src/math')['not']
288
1129
  const notUndefined: typeof import('./core/utils/src/guards')['notUndefined']
289
- const notification: typeof import('./core/notifications/src/index')['notification']
1130
+ const notification: typeof import('../config/notification')['default']
290
1131
  const notificationsPath: typeof import('./core/path/src/index')['notificationsPath']
291
- const now: typeof import('@vueuse/shared')['now']
292
1132
  const objectEntries: typeof import('./core/objects/src/index')['objectEntries']
293
1133
  const objectKeys: typeof import('./core/objects/src/index')['objectKeys']
294
1134
  const objectMap: typeof import('./core/objects/src/index')['objectMap']
295
1135
  const objectPick: typeof import('./core/objects/src/index')['objectPick']
296
1136
  const objectsPath: typeof import('./core/path/src/index')['objectsPath']
297
- const off: typeof import('./core/events/src/index')['off']
298
1137
  const ok: typeof import('./core/error-handling/src/index')['ok']
299
1138
  const okAsync: typeof import('./core/error-handling/src/index')['okAsync']
300
1139
  const onActivated: typeof import('vue')['onActivated']
@@ -303,342 +1142,348 @@ declare global {
303
1142
  const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
304
1143
  const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
305
1144
  const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
306
- const onClickOutside: typeof import('@vueuse/core')['onClickOutside']
1145
+ const onClickOutside: typeof import('./core/utils/src/vendors')['onClickOutside']
307
1146
  const onDeactivated: typeof import('vue')['onDeactivated']
308
1147
  const onErrorCaptured: typeof import('vue')['onErrorCaptured']
309
- const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke']
310
- const onLongPress: typeof import('@vueuse/core')['onLongPress']
1148
+ const onKeyDown: typeof import('./core/utils/src/vendors')['onKeyDown']
1149
+ const onKeyPressed: typeof import('./core/utils/src/vendors')['onKeyPressed']
1150
+ const onKeyStroke: typeof import('./core/utils/src/vendors')['onKeyStroke']
1151
+ const onKeyUp: typeof import('./core/utils/src/vendors')['onKeyUp']
1152
+ const onLongPress: typeof import('./core/utils/src/vendors')['onLongPress']
311
1153
  const onMounted: typeof import('vue')['onMounted']
312
1154
  const onRenderTracked: typeof import('vue')['onRenderTracked']
313
1155
  const onRenderTriggered: typeof import('vue')['onRenderTriggered']
314
1156
  const onScopeDispose: typeof import('vue')['onScopeDispose']
315
1157
  const onServerPrefetch: typeof import('vue')['onServerPrefetch']
316
- const onStartTyping: typeof import('@vueuse/core')['onStartTyping']
1158
+ const onStartTyping: typeof import('./core/utils/src/vendors')['onStartTyping']
317
1159
  const onUnmounted: typeof import('vue')['onUnmounted']
318
1160
  const onUpdated: typeof import('vue')['onUpdated']
1161
+ const onboardingPath: typeof import('./core/path/src/index')['onboardingPath']
1162
+ const or: typeof import('./core/utils/src/math')['or']
1163
+ const ormPath: typeof import('./core/path/src/index')['ormPath']
319
1164
  const p: typeof import('./core/utils/src/p')['p']
320
1165
  const packageJsonPath: typeof import('./core/path/src/index')['packageJsonPath']
321
1166
  const pagesPath: typeof import('./core/path/src/index')['pagesPath']
322
1167
  const paramCase: typeof import('./core/strings/src/case')['paramCase']
323
1168
  const parse: typeof import('./core/path/src/index')['parse']
1169
+ const parseYaml: typeof import('./core/utils/src/helpers')['parseYaml']
324
1170
  const partition: typeof import('./core/arrays/src/index')['partition']
325
1171
  const pascalCase: typeof import('./core/strings/src/case')['pascalCase']
326
1172
  const path: typeof import('./core/path/src/index')['path']
327
1173
  const pathCase: typeof import('./core/strings/src/case')['pathCase']
328
1174
  const pathPath: typeof import('./core/path/src/index')['pathPath']
329
- const pausableWatch: typeof import('@vueuse/core')['pausableWatch']
1175
+ const payment: typeof import('../config/payment')['default']
330
1176
  const paymentsPath: typeof import('./core/path/src/index')['paymentsPath']
331
1177
  const perPage: typeof import('./core/search-engine/src/index')['perPage']
1178
+ const plivo: typeof import('./core/sms/src/index')['plivo']
332
1179
  const plural: typeof import('./core/strings/src/pluralize')['plural']
333
1180
  const preferredDark: typeof import('../functions/dark')['preferredDark']
1181
+ const presetForms: typeof import('@stacksjs/ui')['presetForms']
334
1182
  const projectPath: typeof import('./core/path/src/index')['projectPath']
335
1183
  const provide: typeof import('vue')['provide']
336
1184
  const pushPath: typeof import('./core/path/src/index')['pushPath']
337
1185
  const query: typeof import('./core/search-engine/src/index')['query']
1186
+ const queryBuilderPath: typeof import('./core/path/src/index')['queryBuilderPath']
338
1187
  const queuePath: typeof import('./core/path/src/index')['queuePath']
339
- const rand: typeof import('@vueuse/shared')['rand']
1188
+ const rand: typeof import('./core/utils/src/math')['rand']
340
1189
  const randomStr: typeof import('./core/strings/src/utils')['randomStr']
341
1190
  const range: typeof import('./core/arrays/src/index')['range']
342
- const ray: typeof import('./core/logging/src/index')['ray']
343
- const reactify: typeof import('@vueuse/core')['reactify']
344
- const reactifyObject: typeof import('@vueuse/core')['reactifyObject']
345
1191
  const reactive: typeof import('vue')['reactive']
346
- const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed']
347
- const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit']
348
- const reactivePick: typeof import('@vueuse/core')['reactivePick']
349
1192
  const readJsonFile: typeof import('./core/storage/src/index')['readJsonFile']
1193
+ const readPackageJson: typeof import('./core/storage/src/index')['readPackageJson']
350
1194
  const readTextFile: typeof import('./core/storage/src/index')['readTextFile']
351
1195
  const readonly: typeof import('vue')['readonly']
352
1196
  const realtimePath: typeof import('./core/path/src/index')['realtimePath']
1197
+ const redis: typeof import('./core/cache/src/index')['redis']
353
1198
  const ref: typeof import('vue')['ref']
354
- const refAutoReset: typeof import('@vueuse/core')['refAutoReset']
355
- const refDebounced: typeof import('@vueuse/core')['refDebounced']
356
- const refDefault: typeof import('@vueuse/core')['refDefault']
357
- const refThrottled: typeof import('@vueuse/core')['refThrottled']
358
- const refWithControl: typeof import('@vueuse/core')['refWithControl']
359
1199
  const relative: typeof import('./core/path/src/index')['relative']
360
1200
  const remove: typeof import('./core/arrays/src/index')['remove']
1201
+ const renderHeadToString: typeof import('./core/utils/src/vendors')['renderHeadToString']
361
1202
  const resolve: typeof import('./core/path/src/index')['resolve']
362
1203
  const resolveComponent: typeof import('vue')['resolveComponent']
363
- const resolveDirective: typeof import('vue')['resolveDirective']
364
- const resolveRef: typeof import('@vueuse/core')['resolveRef']
365
- const resolveUnref: typeof import('@vueuse/core')['resolveUnref']
366
1204
  const results: typeof import('./core/search-engine/src/index')['results']
367
- const router: typeof import('./core/router/src/index')['router']
1205
+ const rimraf: typeof import('./core/utils/src/delete')['rimraf']
368
1206
  const routerPath: typeof import('./core/path/src/index')['routerPath']
369
1207
  const routesPath: typeof import('./core/path/src/index')['routesPath']
370
1208
  const runNpmScript: typeof import('./core/utils/src/helpers')['runNpmScript']
371
1209
  const runtimePath: typeof import('./core/path/src/index')['runtimePath']
372
1210
  const sample: typeof import('./core/arrays/src/index')['sample']
1211
+ const schedulerPath: typeof import('./core/path/src/index')['schedulerPath']
373
1212
  const scriptsPath: typeof import('./core/path/src/index')['scriptsPath']
374
- const searchEngine: typeof import('../config/search-engine')['searchEngine']
1213
+ const searchEngine: typeof import('../config/search-engine')['default']
375
1214
  const searchEnginePath: typeof import('./core/path/src/index')['searchEnginePath']
376
1215
  const searchFilters: typeof import('./core/search-engine/src/index')['searchFilters']
377
1216
  const searchParams: typeof import('./core/search-engine/src/index')['searchParams']
378
1217
  const securityPath: typeof import('./core/path/src/index')['securityPath']
1218
+ const seed: typeof import('./core/database/src/seeder/index')['seed']
1219
+ const semver: typeof import('./core/utils/src/versions')['semver']
379
1220
  const sentenceCase: typeof import('./core/strings/src/case')['sentenceCase']
380
1221
  const sep: typeof import('./core/path/src/index')['sep']
381
1222
  const serverPath: typeof import('./core/path/src/index')['serverPath']
382
1223
  const serverlessPath: typeof import('./core/path/src/index')['serverlessPath']
383
- const services: typeof import('../config/services')['services']
1224
+ const services: typeof import('../config/services')['default']
384
1225
  const setEnvValue: typeof import('./core/utils/src/helpers')['setEnvValue']
1226
+ const setSSRHandler: typeof import('./core/utils/src/vendors')['setSSRHandler']
385
1227
  const setTotalHits: typeof import('./core/search-engine/src/index')['setTotalHits']
1228
+ const settingsPath: typeof import('./core/path/src/index')['settingsPath']
386
1229
  const shallowReactive: typeof import('vue')['shallowReactive']
387
1230
  const shallowReadonly: typeof import('vue')['shallowReadonly']
388
1231
  const shallowRef: typeof import('vue')['shallowRef']
389
1232
  const shuffle: typeof import('./core/arrays/src/index')['shuffle']
1233
+ const signalsPath: typeof import('./core/path/src/index')['signalsPath']
390
1234
  const singular: typeof import('./core/strings/src/pluralize')['singular']
1235
+ const slack: typeof import('./core/chat/src/index')['slack']
391
1236
  const slash: typeof import('./core/strings/src/utils')['slash']
392
1237
  const sleep: typeof import('./core/utils/src/promise')['sleep']
393
- const sms: typeof import('./core/notifications/src/index')['sms']
1238
+ const slug: typeof import('./core/strings/src/utils')['slug']
1239
+ const sms77: typeof import('./core/sms/src/index')['sms77']
394
1240
  const smsPath: typeof import('./core/path/src/index')['smsPath']
395
1241
  const snakeCase: typeof import('./core/strings/src/case')['snakeCase']
1242
+ const sns: typeof import('./core/sms/src/index')['sns']
396
1243
  const sort: typeof import('./core/search-engine/src/index')['sort']
397
1244
  const sorts: typeof import('./core/search-engine/src/index')['sorts']
398
- const src: typeof import('./core/ui/src/index')['default']
1245
+ const src: typeof import('./core/storage/src/index')['default']
399
1246
  const stacksPath: typeof import('./core/path/src/index')['stacksPath']
400
- const storage: typeof import('../config/storage')['storage']
1247
+ const storage: typeof import('../config/storage')['default']
401
1248
  const storagePath: typeof import('./core/path/src/index')['storagePath']
402
1249
  const stringsPath: typeof import('./core/path/src/index')['stringsPath']
1250
+ const stripe: typeof import('./core/payments/src/index')['stripe']
1251
+ const subtract: typeof import('./core/utils/src/currency')['subtract']
403
1252
  const suite: typeof import('vitest')['suite']
404
- const syncRef: typeof import('@vueuse/core')['syncRef']
405
- const syncRefs: typeof import('@vueuse/core')['syncRefs']
1253
+ const syncRef: typeof import('./core/utils/src/vendors')['syncRef']
1254
+ const syncRefs: typeof import('./core/utils/src/vendors')['syncRefs']
406
1255
  const tablesPath: typeof import('./core/path/src/index')['tablesPath']
407
1256
  const tap: typeof import('./core/utils/src/function')['tap']
1257
+ const teams: typeof import('./core/chat/src/index')['teams']
1258
+ const telnyx: typeof import('./core/sms/src/index')['telnyx']
408
1259
  const template: typeof import('./core/strings/src/utils')['template']
409
- const templateRef: typeof import('@vueuse/core')['templateRef']
1260
+ const templateRef: typeof import('./core/utils/src/vendors')['templateRef']
1261
+ const termii: typeof import('./core/sms/src/index')['termii']
410
1262
  const test: typeof import('vitest')['test']
411
1263
  const testingPath: typeof import('./core/path/src/index')['testingPath']
412
1264
  const testsPath: typeof import('./core/path/src/index')['testsPath']
413
- const throttle: typeof import('./core/utils/src/vendor')['throttle']
414
- const throttledRef: typeof import('@vueuse/core')['throttledRef']
415
- const throttledWatch: typeof import('@vueuse/core')['throttledWatch']
416
- const timestamp: typeof import('@vueuse/shared')['timestamp']
1265
+ const throttle: typeof import('./core/utils/src/throttle')['throttle']
1266
+ const throttledRef: typeof import('./core/utils/src/vendors')['throttledRef']
1267
+ const throttledWatch: typeof import('./core/utils/src/vendors')['throttledWatch']
1268
+ const titleCase: typeof import('./core/strings/src/case')['titleCase']
417
1269
  const toArray: typeof import('./core/arrays/src/index')['toArray']
1270
+ const toDecimal: typeof import('./core/utils/src/currency')['toDecimal']
418
1271
  const toNamespacedPath: typeof import('./core/path/src/index')['toNamespacedPath']
419
1272
  const toRaw: typeof import('vue')['toRaw']
420
- const toReactive: typeof import('@vueuse/core')['toReactive']
1273
+ const toReactive: typeof import('./core/utils/src/vendors')['toReactive']
421
1274
  const toRef: typeof import('vue')['toRef']
422
1275
  const toRefs: typeof import('vue')['toRefs']
423
- const toString: typeof import('./core/utils/src/index')['toString']
1276
+ const toSnapshot: typeof import('./core/utils/src/currency')['toSnapshot']
1277
+ const toString: typeof import('./core/utils/src/base')['toString']
1278
+ const toUnits: typeof import('./core/utils/src/currency')['toUnits']
424
1279
  const toggleDark: typeof import('../functions/dark')['toggleDark']
425
1280
  const totalPages: typeof import('./core/search-engine/src/index')['totalPages']
1281
+ const transformerCompileClass: typeof import('@stacksjs/ui')['transformerCompileClass']
426
1282
  const triggerRef: typeof import('vue')['triggerRef']
427
- const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount']
428
- const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount']
429
- const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted']
430
- const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose']
431
- const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted']
1283
+ const trimScale: typeof import('./core/utils/src/currency')['trimScale']
1284
+ const tryOnBeforeMount: typeof import('./core/utils/src/vendors')['tryOnBeforeMount']
1285
+ const tryOnBeforeUnmount: typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']
1286
+ const tryOnMounted: typeof import('./core/utils/src/vendors')['tryOnMounted']
1287
+ const tryOnScopeDispose: typeof import('./core/utils/src/vendors')['tryOnScopeDispose']
1288
+ const tryOnUnmounted: typeof import('./core/utils/src/vendors')['tryOnUnmounted']
1289
+ const twilio: typeof import('./core/sms/src/index')['twilio']
432
1290
  const typesPath: typeof import('./core/path/src/index')['typesPath']
433
- const ui: typeof import('../config/ui')['ui']
1291
+ const ui: typeof import('../config/ui')['default']
434
1292
  const uiPath: typeof import('./core/path/src/index')['uiPath']
435
1293
  const uniq: typeof import('./core/arrays/src/index')['uniq']
436
1294
  const uniqueBy: typeof import('./core/arrays/src/index')['uniqueBy']
437
- const unocss: typeof import('./core/ui/src/unocss')['default']
1295
+ const unit: typeof import('./core/testing/src/index')['unit']
438
1296
  const unref: typeof import('vue')['unref']
439
- const unrefElement: typeof import('@vueuse/core')['unrefElement']
440
- const until: typeof import('@vueuse/core')['until']
1297
+ const unrefElement: typeof import('./core/utils/src/vendors')['unrefElement']
1298
+ const until: typeof import('./core/utils/src/vendors')['until']
441
1299
  const updateConfigFile: typeof import('./core/storage/src/index')['updateConfigFile']
442
- const useAbs: typeof import('@vueuse/math')['useAbs']
443
- const useActiveElement: typeof import('@vueuse/core')['useActiveElement']
444
- const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery']
445
- const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter']
446
- const useArrayFind: typeof import('@vueuse/core')['useArrayFind']
447
- const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex']
448
- const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin']
449
- const useArrayMap: typeof import('@vueuse/core')['useArrayMap']
450
- const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce']
451
- const useArraySome: typeof import('@vueuse/core')['useArraySome']
452
- const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique']
453
- const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue']
454
- const useAsyncState: typeof import('@vueuse/core')['useAsyncState']
1300
+ const upstash: typeof import('./core/cache/src/index')['upstash']
1301
+ const useAbs: typeof import('./core/utils/src/math')['useAbs']
1302
+ const useActiveElement: typeof import('./core/utils/src/vendors')['useActiveElement']
1303
+ const useAnimate: typeof import('./core/utils/src/vendors')['useAnimate']
1304
+ const useAsyncQueue: typeof import('./core/utils/src/vendors')['useAsyncQueue']
1305
+ const useAsyncState: typeof import('./core/utils/src/vendors')['useAsyncState']
455
1306
  const useAttrs: typeof import('vue')['useAttrs']
456
- const useAverage: typeof import('@vueuse/math')['useAverage']
457
- const useBase64: typeof import('@vueuse/core')['useBase64']
458
- const useBattery: typeof import('@vueuse/core')['useBattery']
459
- const useBluetooth: typeof import('@vueuse/core')['useBluetooth']
460
- const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints']
461
- const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel']
462
- const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation']
463
- const useCached: typeof import('@vueuse/core')['useCached']
464
- const useCeil: typeof import('@vueuse/math')['useCeil']
1307
+ const useAverage: typeof import('./core/utils/src/math')['useAverage']
1308
+ const useBase64: typeof import('./core/utils/src/vendors')['useBase64']
1309
+ const useBattery: typeof import('./core/utils/src/vendors')['useBattery']
1310
+ const useBluetooth: typeof import('./core/utils/src/vendors')['useBluetooth']
1311
+ const useBreakpoints: typeof import('./core/utils/src/vendors')['useBreakpoints']
1312
+ const useBroadcastChannel: typeof import('./core/utils/src/vendors')['useBroadcastChannel']
1313
+ const useBrowserLocation: typeof import('./core/utils/src/vendors')['useBrowserLocation']
1314
+ const useCached: typeof import('./core/utils/src/vendors')['useCached']
1315
+ const useCeil: typeof import('./core/utils/src/math')['useCeil']
465
1316
  const useChat: typeof import('./core/notifications/src/index')['useChat']
466
- const useClamp: typeof import('@vueuse/math')['useClamp']
467
- const useClipboard: typeof import('@vueuse/core')['useClipboard']
468
- const useCloned: typeof import('@vueuse/core')['useCloned']
469
- const useColorMode: typeof import('@vueuse/core')['useColorMode']
470
- const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog']
471
- const useCounter: typeof import('@vueuse/core')['useCounter']
1317
+ const useClamp: typeof import('./core/utils/src/math')['useClamp']
1318
+ const useClipboard: typeof import('./core/utils/src/vendors')['useClipboard']
1319
+ const useCloned: typeof import('./core/utils/src/vendors')['useCloned']
1320
+ const useColorMode: typeof import('./core/utils/src/vendors')['useColorMode']
1321
+ const useConfirmDialog: typeof import('./core/utils/src/vendors')['useConfirmDialog']
472
1322
  const useCssModule: typeof import('vue')['useCssModule']
473
- const useCssVar: typeof import('@vueuse/core')['useCssVar']
1323
+ const useCssVar: typeof import('./core/utils/src/vendors')['useCssVar']
474
1324
  const useCssVars: typeof import('vue')['useCssVars']
475
- const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement']
476
- const useCycleList: typeof import('@vueuse/core')['useCycleList']
477
- const useDark: typeof import('@vueuse/core')['useDark']
478
- const useDateFormat: typeof import('@vueuse/core')['useDateFormat']
479
- const useDebounce: typeof import('@vueuse/core')['useDebounce']
480
- const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn']
481
- const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory']
482
- const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion']
483
- const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation']
484
- const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio']
485
- const useDevicesList: typeof import('@vueuse/core')['useDevicesList']
486
- const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia']
487
- const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility']
488
- const useDraggable: typeof import('@vueuse/core')['useDraggable']
489
- const useDropZone: typeof import('@vueuse/core')['useDropZone']
490
- const useElementBounding: typeof import('@vueuse/core')['useElementBounding']
491
- const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint']
492
- const useElementHover: typeof import('@vueuse/core')['useElementHover']
493
- const useElementSize: typeof import('@vueuse/core')['useElementSize']
494
- const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility']
1325
+ const useCurrentElement: typeof import('./core/utils/src/vendors')['useCurrentElement']
1326
+ const useCycleList: typeof import('./core/utils/src/vendors')['useCycleList']
1327
+ const useDark: typeof import('./core/utils/src/vendors')['useDark']
1328
+ const useDateFormat: typeof import('./core/utils/src/vendors')['useDateFormat']
1329
+ const useDebouncedRefHistory: typeof import('./core/utils/src/vendors')['useDebouncedRefHistory']
1330
+ const useDeviceMotion: typeof import('./core/utils/src/vendors')['useDeviceMotion']
1331
+ const useDeviceOrientation: typeof import('./core/utils/src/vendors')['useDeviceOrientation']
1332
+ const useDevicePixelRatio: typeof import('./core/utils/src/vendors')['useDevicePixelRatio']
1333
+ const useDevicesList: typeof import('./core/utils/src/vendors')['useDevicesList']
1334
+ const useDisplayMedia: typeof import('./core/utils/src/vendors')['useDisplayMedia']
1335
+ const useDocumentVisibility: typeof import('./core/utils/src/vendors')['useDocumentVisibility']
1336
+ const useDraggable: typeof import('./core/utils/src/vendors')['useDraggable']
1337
+ const useDropZone: typeof import('./core/utils/src/vendors')['useDropZone']
1338
+ const useElementBounding: typeof import('./core/utils/src/vendors')['useElementBounding']
1339
+ const useElementByPoint: typeof import('./core/utils/src/vendors')['useElementByPoint']
1340
+ const useElementHover: typeof import('./core/utils/src/vendors')['useElementHover']
1341
+ const useElementSize: typeof import('./core/utils/src/vendors')['useElementSize']
1342
+ const useElementVisibility: typeof import('./core/utils/src/vendors')['useElementVisibility']
495
1343
  const useEmail: typeof import('./core/notifications/src/index')['useEmail']
496
- const useEvent: typeof import('./core/events/src/index')['useEvent']
497
- const useEventBus: typeof import('@vueuse/core')['useEventBus']
498
- const useEventListener: typeof import('@vueuse/core')['useEventListener']
499
- const useEventSource: typeof import('@vueuse/core')['useEventSource']
500
- const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper']
501
- const useFavicon: typeof import('@vueuse/core')['useFavicon']
502
- const useFetch: typeof import('@vueuse/core')['useFetch']
503
- const useFileDialog: typeof import('@vueuse/core')['useFileDialog']
504
- const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess']
505
- const useFloor: typeof import('@vueuse/math')['useFloor']
506
- const useFocus: typeof import('@vueuse/core')['useFocus']
507
- const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin']
508
- const useFps: typeof import('@vueuse/core')['useFps']
509
- const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
510
- const useGamepad: typeof import('@vueuse/core')['useGamepad']
511
- const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
512
- const useHead: typeof import('@vueuse/head')['useHead']
513
- const useIdle: typeof import('@vueuse/core')['useIdle']
514
- const useImage: typeof import('@vueuse/core')['useImage']
515
- const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
516
- const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver']
517
- const useInterval: typeof import('@vueuse/core')['useInterval']
518
- const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn']
519
- const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier']
520
- const useLastChanged: typeof import('@vueuse/core')['useLastChanged']
1344
+ const useEventBus: typeof import('./core/utils/src/vendors')['useEventBus']
1345
+ const useEventListener: typeof import('./core/utils/src/vendors')['useEventListener']
1346
+ const useEventSource: typeof import('./core/utils/src/vendors')['useEventSource']
1347
+ const useEyeDropper: typeof import('./core/utils/src/vendors')['useEyeDropper']
1348
+ const useFavicon: typeof import('./core/utils/src/vendors')['useFavicon']
1349
+ const useFetch: typeof import('./core/utils/src/vendors')['useFetch']
1350
+ const useFileDialog: typeof import('./core/utils/src/vendors')['useFileDialog']
1351
+ const useFileSystemAccess: typeof import('./core/utils/src/vendors')['useFileSystemAccess']
1352
+ const useFloor: typeof import('./core/utils/src/math')['useFloor']
1353
+ const useFocus: typeof import('./core/utils/src/vendors')['useFocus']
1354
+ const useFocusWithin: typeof import('./core/utils/src/vendors')['useFocusWithin']
1355
+ const useFps: typeof import('./core/utils/src/vendors')['useFps']
1356
+ const useFullscreen: typeof import('./core/utils/src/vendors')['useFullscreen']
1357
+ const useGamepad: typeof import('./core/utils/src/vendors')['useGamepad']
1358
+ const useGeolocation: typeof import('./core/utils/src/vendors')['useGeolocation']
1359
+ const useIdle: typeof import('./core/utils/src/vendors')['useIdle']
1360
+ const useImage: typeof import('./core/utils/src/vendors')['useImage']
1361
+ const useInfiniteScroll: typeof import('./core/utils/src/vendors')['useInfiniteScroll']
1362
+ const useIntersectionObserver: typeof import('./core/utils/src/vendors')['useIntersectionObserver']
1363
+ const useKeyModifier: typeof import('./core/utils/src/vendors')['useKeyModifier']
521
1364
  const useLink: typeof import('vue-router')['useLink']
522
- const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage']
523
- const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys']
524
- const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory']
525
- const useMath: typeof import('@vueuse/math')['useMath']
526
- const useMax: typeof import('@vueuse/math')['useMax']
527
- const useMediaControls: typeof import('@vueuse/core')['useMediaControls']
528
- const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery']
529
- const useMemoize: typeof import('@vueuse/core')['useMemoize']
530
- const useMemory: typeof import('@vueuse/core')['useMemory']
531
- const useMin: typeof import('@vueuse/math')['useMin']
532
- const useMounted: typeof import('@vueuse/core')['useMounted']
533
- const useMouse: typeof import('@vueuse/core')['useMouse']
534
- const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement']
535
- const useMousePressed: typeof import('@vueuse/core')['useMousePressed']
536
- const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver']
537
- const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage']
538
- const useNetwork: typeof import('@vueuse/core')['useNetwork']
1365
+ const useLocalStorage: typeof import('./core/utils/src/vendors')['useLocalStorage']
1366
+ const useMagicKeys: typeof import('./core/utils/src/vendors')['useMagicKeys']
1367
+ const useManualRefHistory: typeof import('./core/utils/src/vendors')['useManualRefHistory']
1368
+ const useMath: typeof import('./core/utils/src/math')['useMath']
1369
+ const useMax: typeof import('./core/utils/src/math')['useMax']
1370
+ const useMediaControls: typeof import('./core/utils/src/vendors')['useMediaControls']
1371
+ const useMediaQuery: typeof import('./core/utils/src/vendors')['useMediaQuery']
1372
+ const useMemoize: typeof import('./core/utils/src/vendors')['useMemoize']
1373
+ const useMemory: typeof import('./core/utils/src/vendors')['useMemory']
1374
+ const useMin: typeof import('./core/utils/src/math')['useMin']
1375
+ const useMounted: typeof import('./core/utils/src/vendors')['useMounted']
1376
+ const useMouse: typeof import('./core/utils/src/vendors')['useMouse']
1377
+ const useMouseInElement: typeof import('./core/utils/src/vendors')['useMouseInElement']
1378
+ const useMousePressed: typeof import('./core/utils/src/vendors')['useMousePressed']
1379
+ const useMutationObserver: typeof import('./core/utils/src/vendors')['useMutationObserver']
1380
+ const useNavigatorLanguage: typeof import('./core/utils/src/vendors')['useNavigatorLanguage']
1381
+ const useNetwork: typeof import('./core/utils/src/vendors')['useNetwork']
539
1382
  const useNotification: typeof import('./core/notifications/src/index')['useNotification']
540
- const useNow: typeof import('@vueuse/core')['useNow']
541
- const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl']
542
- const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination']
543
- const useOnline: typeof import('@vueuse/core')['useOnline']
544
- const usePageLeave: typeof import('@vueuse/core')['usePageLeave']
545
- const useParallax: typeof import('@vueuse/core')['useParallax']
546
- const usePermission: typeof import('@vueuse/core')['usePermission']
547
- const usePointer: typeof import('@vueuse/core')['usePointer']
548
- const usePointerLock: typeof import('@vueuse/core')['usePointerLock']
549
- const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe']
550
- const usePrecision: typeof import('@vueuse/math')['usePrecision']
551
- const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme']
552
- const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast']
553
- const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark']
554
- const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages']
555
- const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion']
556
- const usePrevious: typeof import('@vueuse/core')['usePrevious']
557
- const useProjection: typeof import('@vueuse/math')['useProjection']
558
- const useRafFn: typeof import('@vueuse/core')['useRafFn']
559
- const useRefHistory: typeof import('@vueuse/core')['useRefHistory']
560
- const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver']
561
- const useRound: typeof import('@vueuse/math')['useRound']
1383
+ const useNow: typeof import('./core/utils/src/vendors')['useNow']
1384
+ const useObjectUrl: typeof import('./core/utils/src/vendors')['useObjectUrl']
1385
+ const useOffsetPagination: typeof import('./core/utils/src/vendors')['useOffsetPagination']
1386
+ const useOnline: typeof import('./core/utils/src/vendors')['useOnline']
1387
+ const usePageLeave: typeof import('./core/utils/src/vendors')['usePageLeave']
1388
+ const useParallax: typeof import('./core/utils/src/vendors')['useParallax']
1389
+ const useParentElement: typeof import('./core/utils/src/vendors')['useParentElement']
1390
+ const usePerformanceObserver: typeof import('./core/utils/src/vendors')['usePerformanceObserver']
1391
+ const usePermission: typeof import('./core/utils/src/vendors')['usePermission']
1392
+ const usePointer: typeof import('./core/utils/src/vendors')['usePointer']
1393
+ const usePointerLock: typeof import('./core/utils/src/vendors')['usePointerLock']
1394
+ const usePointerSwipe: typeof import('./core/utils/src/vendors')['usePointerSwipe']
1395
+ const usePrecision: typeof import('./core/utils/src/math')['usePrecision']
1396
+ const usePreferredColorScheme: typeof import('./core/utils/src/vendors')['usePreferredColorScheme']
1397
+ const usePreferredContrast: typeof import('./core/utils/src/vendors')['usePreferredContrast']
1398
+ const usePreferredDark: typeof import('./core/utils/src/vendors')['usePreferredDark']
1399
+ const usePreferredLanguages: typeof import('./core/utils/src/vendors')['usePreferredLanguages']
1400
+ const usePreferredReducedMotion: typeof import('./core/utils/src/vendors')['usePreferredReducedMotion']
1401
+ const usePrevious: typeof import('./core/utils/src/vendors')['usePrevious']
1402
+ const useProjection: typeof import('./core/utils/src/math')['useProjection']
1403
+ const useRafFn: typeof import('./core/utils/src/vendors')['useRafFn']
1404
+ const useRefHistory: typeof import('./core/utils/src/vendors')['useRefHistory']
1405
+ const useResizeObserver: typeof import('./core/utils/src/vendors')['useResizeObserver']
1406
+ const useRound: typeof import('./core/utils/src/math')['useRound']
562
1407
  const useRoute: typeof import('vue-router')['useRoute']
563
1408
  const useRouter: typeof import('vue-router')['useRouter']
564
1409
  const useSMS: typeof import('./core/notifications/src/index')['useSMS']
565
- const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation']
566
- const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea']
567
- const useScriptTag: typeof import('@vueuse/core')['useScriptTag']
568
- const useScroll: typeof import('@vueuse/core')['useScroll']
569
- const useScrollLock: typeof import('@vueuse/core')['useScrollLock']
1410
+ const useScreenOrientation: typeof import('./core/utils/src/vendors')['useScreenOrientation']
1411
+ const useScreenSafeArea: typeof import('./core/utils/src/vendors')['useScreenSafeArea']
1412
+ const useScriptTag: typeof import('./core/utils/src/vendors')['useScriptTag']
1413
+ const useScroll: typeof import('./core/utils/src/vendors')['useScroll']
1414
+ const useScrollLock: typeof import('./core/utils/src/vendors')['useScrollLock']
570
1415
  const useSearchEngine: typeof import('./core/search-engine/src/index')['useSearchEngine']
571
- const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage']
572
- const useShare: typeof import('@vueuse/core')['useShare']
1416
+ const useSessionStorage: typeof import('./core/utils/src/vendors')['useSessionStorage']
1417
+ const useShare: typeof import('./core/utils/src/vendors')['useShare']
573
1418
  const useSlots: typeof import('vue')['useSlots']
574
- const useSorted: typeof import('@vueuse/core')['useSorted']
575
- const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition']
576
- const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis']
577
- const useStepper: typeof import('@vueuse/core')['useStepper']
578
- const useStorage: typeof import('@vueuse/core')['useStorage']
579
- const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync']
580
- const useStyleTag: typeof import('@vueuse/core')['useStyleTag']
581
- const useSum: typeof import('@vueuse/math')['useSum']
582
- const useSupported: typeof import('@vueuse/core')['useSupported']
583
- const useSwipe: typeof import('@vueuse/core')['useSwipe']
584
- const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList']
585
- const useTextDirection: typeof import('@vueuse/core')['useTextDirection']
586
- const useTextSelection: typeof import('@vueuse/core')['useTextSelection']
587
- const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize']
588
- const useThrottle: typeof import('@vueuse/core')['useThrottle']
589
- const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn']
590
- const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory']
591
- const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo']
592
- const useTimeout: typeof import('@vueuse/core')['useTimeout']
593
- const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn']
594
- const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll']
595
- const useTimestamp: typeof import('@vueuse/core')['useTimestamp']
596
- const useTitle: typeof import('@vueuse/core')['useTitle']
597
- const useToFixed: typeof import('@vueuse/math')['useToFixed']
598
- const useToNumber: typeof import('@vueuse/core')['useToNumber']
599
- const useToString: typeof import('@vueuse/core')['useToString']
600
- const useToggle: typeof import('@vueuse/core')['useToggle']
601
- const useTransition: typeof import('@vueuse/core')['useTransition']
602
- const useTrunc: typeof import('@vueuse/math')['useTrunc']
603
- const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams']
604
- const useUserMedia: typeof import('@vueuse/core')['useUserMedia']
605
- const useVModel: typeof import('@vueuse/core')['useVModel']
606
- const useVModels: typeof import('@vueuse/core')['useVModels']
607
- const useVibrate: typeof import('@vueuse/core')['useVibrate']
608
- const useVirtualList: typeof import('@vueuse/core')['useVirtualList']
609
- const useWakeLock: typeof import('@vueuse/core')['useWakeLock']
610
- const useWebNotification: typeof import('@vueuse/core')['useWebNotification']
611
- const useWebSocket: typeof import('@vueuse/core')['useWebSocket']
612
- const useWebWorker: typeof import('@vueuse/core')['useWebWorker']
613
- const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn']
614
- const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus']
615
- const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll']
616
- const useWindowSize: typeof import('@vueuse/core')['useWindowSize']
1419
+ const useSorted: typeof import('./core/utils/src/vendors')['useSorted']
1420
+ const useSpeechRecognition: typeof import('./core/utils/src/vendors')['useSpeechRecognition']
1421
+ const useSpeechSynthesis: typeof import('./core/utils/src/vendors')['useSpeechSynthesis']
1422
+ const useStepper: typeof import('./core/utils/src/vendors')['useStepper']
1423
+ const useStorage: typeof import('./core/utils/src/vendors')['useStorage']
1424
+ const useStorageAsync: typeof import('./core/utils/src/vendors')['useStorageAsync']
1425
+ const useStyleTag: typeof import('./core/utils/src/vendors')['useStyleTag']
1426
+ const useSum: typeof import('./core/utils/src/math')['useSum']
1427
+ const useSupported: typeof import('./core/utils/src/vendors')['useSupported']
1428
+ const useSwipe: typeof import('./core/utils/src/vendors')['useSwipe']
1429
+ const useTemplateRefsList: typeof import('./core/utils/src/vendors')['useTemplateRefsList']
1430
+ const useTextDirection: typeof import('./core/utils/src/vendors')['useTextDirection']
1431
+ const useTextSelection: typeof import('./core/utils/src/vendors')['useTextSelection']
1432
+ const useTextareaAutosize: typeof import('./core/utils/src/vendors')['useTextareaAutosize']
1433
+ const useThrottledRefHistory: typeof import('./core/utils/src/vendors')['useThrottledRefHistory']
1434
+ const useTimeAgo: typeof import('./core/utils/src/vendors')['useTimeAgo']
1435
+ const useTimeoutPoll: typeof import('./core/utils/src/vendors')['useTimeoutPoll']
1436
+ const useTimestamp: typeof import('./core/utils/src/vendors')['useTimestamp']
1437
+ const useTitle: typeof import('./core/utils/src/vendors')['useTitle']
1438
+ const useTransition: typeof import('./core/utils/src/vendors')['useTransition']
1439
+ const useTrunc: typeof import('./core/utils/src/math')['useTrunc']
1440
+ const useUrlSearchParams: typeof import('./core/utils/src/vendors')['useUrlSearchParams']
1441
+ const useUserMedia: typeof import('./core/utils/src/vendors')['useUserMedia']
1442
+ const useVModel: typeof import('./core/utils/src/vendors')['useVModel']
1443
+ const useVModels: typeof import('./core/utils/src/vendors')['useVModels']
1444
+ const useVibrate: typeof import('./core/utils/src/vendors')['useVibrate']
1445
+ const useVirtualList: typeof import('./core/utils/src/vendors')['useVirtualList']
1446
+ const useWakeLock: typeof import('./core/utils/src/vendors')['useWakeLock']
1447
+ const useWebNotification: typeof import('./core/utils/src/vendors')['useWebNotification']
1448
+ const useWebSocket: typeof import('./core/utils/src/vendors')['useWebSocket']
1449
+ const useWebWorker: typeof import('./core/utils/src/vendors')['useWebWorker']
1450
+ const useWebWorkerFn: typeof import('./core/utils/src/vendors')['useWebWorkerFn']
1451
+ const useWindowFocus: typeof import('./core/utils/src/vendors')['useWindowFocus']
1452
+ const useWindowScroll: typeof import('./core/utils/src/vendors')['useWindowScroll']
1453
+ const useWindowSize: typeof import('./core/utils/src/vendors')['useWindowSize']
1454
+ const userConfigPath: typeof import('./core/path/src/index')['userConfigPath']
617
1455
  const utilsPath: typeof import('./core/path/src/index')['utilsPath']
618
- const validate: typeof import('./core/validation/src/index')['validate']
619
- const validateUsername: typeof import('./core/strings/src/validation')['validateUsername']
1456
+ const validate: typeof import('./core/validation/src/validate')['validate']
1457
+ const validateUsername: typeof import('./core/validation/src/is')['validateUsername']
620
1458
  const validationPath: typeof import('./core/path/src/index')['validationPath']
621
1459
  const verifyHash: typeof import('./core/security/src/hash')['verifyHash']
622
1460
  const vi: typeof import('vitest')['vi']
623
1461
  const vitest: typeof import('vitest')['vitest']
624
1462
  const watch: typeof import('vue')['watch']
625
- const watchArray: typeof import('@vueuse/core')['watchArray']
626
- const watchAtMost: typeof import('@vueuse/core')['watchAtMost']
627
- const watchDebounced: typeof import('@vueuse/core')['watchDebounced']
1463
+ const watchArray: typeof import('./core/utils/src/vendors')['watchArray']
1464
+ const watchAtMost: typeof import('./core/utils/src/vendors')['watchAtMost']
1465
+ const watchDebounced: typeof import('./core/utils/src/vendors')['watchDebounced']
1466
+ const watchDeep: typeof import('./core/utils/src/vendors')['watchDeep']
628
1467
  const watchEffect: typeof import('vue')['watchEffect']
629
- const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable']
630
- const watchOnce: typeof import('@vueuse/core')['watchOnce']
631
- const watchPausable: typeof import('@vueuse/core')['watchPausable']
1468
+ const watchIgnorable: typeof import('./core/utils/src/vendors')['watchIgnorable']
1469
+ const watchImmediate: typeof import('./core/utils/src/vendors')['watchImmediate']
1470
+ const watchOnce: typeof import('./core/utils/src/vendors')['watchOnce']
1471
+ const watchPausable: typeof import('./core/utils/src/vendors')['watchPausable']
632
1472
  const watchPostEffect: typeof import('vue')['watchPostEffect']
633
1473
  const watchSyncEffect: typeof import('vue')['watchSyncEffect']
634
- const watchThrottled: typeof import('@vueuse/core')['watchThrottled']
635
- const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable']
636
- const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter']
637
- const whenever: typeof import('@vueuse/core')['whenever']
1474
+ const watchThrottled: typeof import('./core/utils/src/vendors')['watchThrottled']
1475
+ const watchTriggerable: typeof import('./core/utils/src/vendors')['watchTriggerable']
1476
+ const watchWithFilter: typeof import('./core/utils/src/vendors')['watchWithFilter']
1477
+ const whenever: typeof import('./core/utils/src/vendors')['whenever']
638
1478
  const writeJsonFile: typeof import('./core/storage/src/index')['writeJsonFile']
639
1479
  const writeTextFile: typeof import('./core/storage/src/index')['writeTextFile']
640
1480
  const xRayPath: typeof import('./core/path/src/index')['xRayPath']
641
- const z: typeof import('./core/validation/src/index')['z']
1481
+ const z: typeof import('./core/validation/src/validate')['z']
1482
+ }
1483
+ // for type re-export
1484
+ declare global {
1485
+ // @ts-ignore
1486
+ export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
642
1487
  }
643
1488
  // for vue template auto import
644
1489
  import { UnwrapRef } from 'vue'
@@ -653,13 +1498,21 @@ declare module 'vue' {
653
1498
  readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
654
1499
  readonly // wip: UnwrapRef<typeof import('./core/realtime/src/index')['// wip']>
655
1500
  readonly Collection: UnwrapRef<typeof import('./core/objects/src/index')['Collection']>
1501
+ readonly CssEngine: UnwrapRef<typeof import('@stacksjs/ui')['CssEngine']>
656
1502
  readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
657
1503
  readonly Err: UnwrapRef<typeof import('./core/error-handling/src/index')['Err']>
1504
+ readonly Head: UnwrapRef<typeof import('./core/utils/src/vendors')['Head']>
1505
+ readonly HeadVuePlugin: UnwrapRef<typeof import('./core/utils/src/vendors')['HeadVuePlugin']>
658
1506
  readonly Ok: UnwrapRef<typeof import('./core/error-handling/src/index')['Ok']>
659
1507
  readonly Result: UnwrapRef<typeof import('./core/error-handling/src/index')['Result']>
660
1508
  readonly ResultAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['ResultAsync']>
1509
+ readonly Router: UnwrapRef<typeof import('./core/router/src/index')['Router']>
1510
+ readonly Store: UnwrapRef<typeof import('@stacksjs/ui')['Store']>
1511
+ readonly Type: UnwrapRef<typeof import('./core/validation/src/validate')['Type']>
1512
+ readonly UiEngine: UnwrapRef<typeof import('@stacksjs/ui')['UiEngine']>
661
1513
  readonly _dirname: UnwrapRef<typeof import('./core/storage/src/index')['_dirname']>
662
1514
  readonly actionsPath: UnwrapRef<typeof import('./core/path/src/index')['actionsPath']>
1515
+ readonly add: UnwrapRef<typeof import('./core/utils/src/currency')['add']>
663
1516
  readonly addIrregularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addIrregularRule']>
664
1517
  readonly addPluralRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addPluralRule']>
665
1518
  readonly addSingularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addSingularRule']>
@@ -668,14 +1521,17 @@ declare module 'vue' {
668
1521
  readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
669
1522
  readonly aiPath: UnwrapRef<typeof import('./core/path/src/index')['aiPath']>
670
1523
  readonly aliasPath: UnwrapRef<typeof import('./core/path/src/index')['aliasPath']>
671
- readonly all: UnwrapRef<typeof import('./core/events/src/index')['all']>
672
- readonly app: UnwrapRef<typeof import('../config/app')['app']>
1524
+ readonly allocate: UnwrapRef<typeof import('./core/utils/src/currency')['allocate']>
1525
+ readonly and: UnwrapRef<typeof import('./core/utils/src/math')['and']>
1526
+ readonly app: UnwrapRef<typeof import('../config/app')['default']>
1527
+ readonly appPath: UnwrapRef<typeof import('./core/path/src/index')['appPath']>
673
1528
  readonly arraysPath: UnwrapRef<typeof import('./core/path/src/index')['arraysPath']>
674
- readonly assert: UnwrapRef<typeof import('./core/utils/src/index')['assert']>
675
- readonly asyncComputed: UnwrapRef<typeof import('@vueuse/core')['asyncComputed']>
1529
+ readonly assert: UnwrapRef<typeof import('vitest')['assert']>
1530
+ readonly asyncComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['asyncComputed']>
676
1531
  readonly at: UnwrapRef<typeof import('./core/arrays/src/index')['at']>
1532
+ readonly auth: UnwrapRef<typeof import('./core/auth/src/index')['auth']>
677
1533
  readonly authPath: UnwrapRef<typeof import('./core/path/src/index')['authPath']>
678
- readonly autoResetRef: UnwrapRef<typeof import('@vueuse/core')['autoResetRef']>
1534
+ readonly autoResetRef: UnwrapRef<typeof import('./core/utils/src/vendors')['autoResetRef']>
679
1535
  readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
680
1536
  readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
681
1537
  readonly basename: UnwrapRef<typeof import('./core/path/src/index')['basename']>
@@ -684,32 +1540,43 @@ declare module 'vue' {
684
1540
  readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
685
1541
  readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
686
1542
  readonly beforeEach: UnwrapRef<typeof import('vitest')['beforeEach']>
1543
+ readonly breakpointsAntDesign: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsAntDesign']>
1544
+ readonly breakpointsBootstrapV5: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']>
1545
+ readonly breakpointsMasterCss: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsMasterCss']>
1546
+ readonly breakpointsQuasar: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsQuasar']>
1547
+ readonly breakpointsSematic: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsSematic']>
1548
+ readonly breakpointsTailwind: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsTailwind']>
1549
+ readonly breakpointsVuetify: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsVuetify']>
687
1550
  readonly buildEnginePath: UnwrapRef<typeof import('./core/path/src/index')['buildEnginePath']>
688
1551
  readonly buildEntriesPath: UnwrapRef<typeof import('./core/path/src/index')['buildEntriesPath']>
689
1552
  readonly buildPath: UnwrapRef<typeof import('./core/path/src/index')['buildPath']>
690
- readonly cache: UnwrapRef<typeof import('../config/cache')['cache']>
1553
+ readonly cache: UnwrapRef<typeof import('../config/cache')['default']>
691
1554
  readonly cachePath: UnwrapRef<typeof import('./core/path/src/index')['cachePath']>
692
1555
  readonly calculatePagination: UnwrapRef<typeof import('./core/search-engine/src/index')['calculatePagination']>
693
1556
  readonly camelCase: UnwrapRef<typeof import('./core/strings/src/case')['camelCase']>
694
1557
  readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/case')['capitalCase']>
695
1558
  readonly capitalize: UnwrapRef<typeof import('./core/strings/src/utils')['capitalize']>
1559
+ readonly cdn: UnwrapRef<typeof import('../config/cdn')['default']>
696
1560
  readonly chai: UnwrapRef<typeof import('vitest')['chai']>
697
- readonly chat: UnwrapRef<typeof import('./core/notifications/src/index')['chat']>
698
1561
  readonly chatPath: UnwrapRef<typeof import('./core/path/src/index')['chatPath']>
699
- readonly clamp: UnwrapRef<typeof import('@vueuse/shared')['clamp']>
1562
+ readonly clamp: UnwrapRef<typeof import('./core/utils/src/math')['clamp']>
700
1563
  readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/index')['clampArrayRange']>
701
1564
  readonly clearUndefined: UnwrapRef<typeof import('./core/objects/src/index')['clearUndefined']>
1565
+ readonly cli: UnwrapRef<typeof import('../config/cli')['default']>
702
1566
  readonly cliPath: UnwrapRef<typeof import('./core/path/src/index')['cliPath']>
703
1567
  readonly client: UnwrapRef<typeof import('./core/search-engine/src/index')['client']>
1568
+ readonly cloneFnJSON: UnwrapRef<typeof import('./core/utils/src/vendors')['cloneFnJSON']>
1569
+ readonly cloudPath: UnwrapRef<typeof import('./core/path/src/index')['cloudPath']>
704
1570
  readonly collect: UnwrapRef<typeof import('./core/objects/src/index')['collect']>
705
1571
  readonly collectionsPath: UnwrapRef<typeof import('./core/path/src/index')['collectionsPath']>
1572
+ readonly compare: UnwrapRef<typeof import('./core/utils/src/currency')['compare']>
706
1573
  readonly componentsPath: UnwrapRef<typeof import('./core/path/src/index')['componentsPath']>
707
1574
  readonly computed: UnwrapRef<typeof import('vue')['computed']>
708
- readonly computedAsync: UnwrapRef<typeof import('@vueuse/core')['computedAsync']>
709
- readonly computedEager: UnwrapRef<typeof import('@vueuse/core')['computedEager']>
710
- readonly computedInject: UnwrapRef<typeof import('@vueuse/core')['computedInject']>
711
- readonly computedWithControl: UnwrapRef<typeof import('@vueuse/core')['computedWithControl']>
712
- readonly config: UnwrapRef<typeof import('./core/utils/src/helpers')['config']>
1575
+ readonly computedAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['computedAsync']>
1576
+ readonly computedEager: UnwrapRef<typeof import('./core/utils/src/vendors')['computedEager']>
1577
+ readonly computedInject: UnwrapRef<typeof import('./core/utils/src/vendors')['computedInject']>
1578
+ readonly computedWithControl: UnwrapRef<typeof import('./core/utils/src/vendors')['computedWithControl']>
1579
+ readonly config: UnwrapRef<typeof import('./core/notifications/src/tailwind.config')['config']>
713
1580
  readonly configPath: UnwrapRef<typeof import('./core/path/src/index')['configPath']>
714
1581
  readonly constantCase: UnwrapRef<typeof import('./core/strings/src/case')['constantCase']>
715
1582
  readonly contains: UnwrapRef<typeof import('./core/arrays/src/index')['contains']>
@@ -717,81 +1584,126 @@ declare module 'vue' {
717
1584
  readonly containsAny: UnwrapRef<typeof import('./core/arrays/src/index')['containsAny']>
718
1585
  readonly containsNone: UnwrapRef<typeof import('./core/arrays/src/index')['containsNone']>
719
1586
  readonly containsOnly: UnwrapRef<typeof import('./core/arrays/src/index')['containsOnly']>
720
- readonly controlledComputed: UnwrapRef<typeof import('@vueuse/core')['controlledComputed']>
721
- readonly controlledRef: UnwrapRef<typeof import('@vueuse/core')['controlledRef']>
1587
+ readonly controlledComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledComputed']>
1588
+ readonly controlledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledRef']>
1589
+ readonly convert: UnwrapRef<typeof import('./core/utils/src/currency')['convert']>
722
1590
  readonly copyFolder: UnwrapRef<typeof import('./core/storage/src/index')['copyFolder']>
723
1591
  readonly corePath: UnwrapRef<typeof import('./core/path/src/index')['corePath']>
724
1592
  readonly count: UnwrapRef<typeof import('../functions/counter')['count']>
725
1593
  readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
726
1594
  readonly createControlledPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createControlledPromise']>
727
- readonly createEventHook: UnwrapRef<typeof import('@vueuse/core')['createEventHook']>
1595
+ readonly createEventHook: UnwrapRef<typeof import('./core/utils/src/vendors')['createEventHook']>
1596
+ readonly createFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['createFetch']>
728
1597
  readonly createFolder: UnwrapRef<typeof import('./core/storage/src/index')['createFolder']>
729
- readonly createGenericProjection: UnwrapRef<typeof import('@vueuse/math')['createGenericProjection']>
730
- readonly createGlobalState: UnwrapRef<typeof import('@vueuse/core')['createGlobalState']>
731
- readonly createInjectionState: UnwrapRef<typeof import('@vueuse/core')['createInjectionState']>
732
- readonly createProjection: UnwrapRef<typeof import('@vueuse/math')['createProjection']>
1598
+ readonly createGenericProjection: UnwrapRef<typeof import('./core/utils/src/math')['createGenericProjection']>
1599
+ readonly createGlobalState: UnwrapRef<typeof import('./core/utils/src/vendors')['createGlobalState']>
1600
+ readonly createHead: UnwrapRef<typeof import('./core/utils/src/vendors')['createHead']>
1601
+ readonly createInjectionState: UnwrapRef<typeof import('./core/utils/src/vendors')['createInjectionState']>
1602
+ readonly createProjection: UnwrapRef<typeof import('./core/utils/src/math')['createProjection']>
733
1603
  readonly createPromiseLock: UnwrapRef<typeof import('./core/utils/src/promise')['createPromiseLock']>
734
- readonly createReactiveFn: UnwrapRef<typeof import('@vueuse/core')['createReactiveFn']>
735
- readonly createSharedComposable: UnwrapRef<typeof import('@vueuse/core')['createSharedComposable']>
1604
+ readonly createReactiveFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createReactiveFn']>
1605
+ readonly createReusableTemplate: UnwrapRef<typeof import('./core/utils/src/vendors')['createReusableTemplate']>
1606
+ readonly createSharedComposable: UnwrapRef<typeof import('./core/utils/src/vendors')['createSharedComposable']>
736
1607
  readonly createSingletonPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createSingletonPromise']>
737
- readonly createUnrefFn: UnwrapRef<typeof import('@vueuse/core')['createUnrefFn']>
1608
+ readonly createTemplatePromise: UnwrapRef<typeof import('./core/utils/src/vendors')['createTemplatePromise']>
1609
+ readonly createUnrefFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createUnrefFn']>
738
1610
  readonly currentPage: UnwrapRef<typeof import('./core/search-engine/src/index')['currentPage']>
739
1611
  readonly customElementsDataPath: UnwrapRef<typeof import('./core/path/src/index')['customElementsDataPath']>
740
1612
  readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
1613
+ readonly customStorageEventName: UnwrapRef<typeof import('./core/utils/src/vendors')['customStorageEventName']>
741
1614
  readonly dashboardPath: UnwrapRef<typeof import('./core/path/src/index')['dashboardPath']>
742
- readonly database: UnwrapRef<typeof import('../config/database')['database']>
1615
+ readonly database: UnwrapRef<typeof import('../config/database')['default']>
743
1616
  readonly databasePath: UnwrapRef<typeof import('./core/path/src/index')['databasePath']>
744
1617
  readonly dd: UnwrapRef<typeof import('./core/logging/src/index')['dd']>
745
- readonly debounce: UnwrapRef<typeof import('./core/utils/src/vendor')['debounce']>
746
- readonly debouncedRef: UnwrapRef<typeof import('@vueuse/core')['debouncedRef']>
747
- readonly debouncedWatch: UnwrapRef<typeof import('@vueuse/core')['debouncedWatch']>
748
- readonly debug: UnwrapRef<typeof import('./core/logging/src/index')['debug']>
1618
+ readonly debounce: UnwrapRef<typeof import('./core/utils/src/debounce')['debounce']>
1619
+ readonly debouncedRef: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedRef']>
1620
+ readonly debouncedWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedWatch']>
1621
+ readonly debug: UnwrapRef<typeof import('../config/debug')['default']>
749
1622
  readonly decrypt: UnwrapRef<typeof import('./core/security/src/crypt')['decrypt']>
750
1623
  readonly deepMerge: UnwrapRef<typeof import('./core/objects/src/index')['deepMerge']>
1624
+ readonly defaultDocument: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultDocument']>
1625
+ readonly defaultLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultLocation']>
1626
+ readonly defaultNavigator: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultNavigator']>
1627
+ readonly defaultWindow: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultWindow']>
1628
+ readonly defineApp: UnwrapRef<typeof import('./core/utils/src/config')['defineApp']>
751
1629
  readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
1630
+ readonly defineCache: UnwrapRef<typeof import('./core/utils/src/config')['defineCache']>
1631
+ readonly defineCdn: UnwrapRef<typeof import('./core/utils/src/config')['defineCdn']>
1632
+ readonly defineCli: UnwrapRef<typeof import('./core/utils/src/config')['defineCli']>
752
1633
  readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
1634
+ readonly defineCronJobsConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineCronJobsConfig']>
1635
+ readonly defineDatabase: UnwrapRef<typeof import('./core/utils/src/config')['defineDatabase']>
1636
+ readonly defineDebugConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineDebugConfig']>
1637
+ readonly defineDns: UnwrapRef<typeof import('./core/utils/src/config')['defineDns']>
1638
+ readonly defineEmailConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineEmailConfig']>
1639
+ readonly defineEvents: UnwrapRef<typeof import('./core/utils/src/config')['defineEvents']>
1640
+ readonly defineGit: UnwrapRef<typeof import('./core/utils/src/config')['defineGit']>
1641
+ readonly defineHashing: UnwrapRef<typeof import('./core/utils/src/config')['defineHashing']>
1642
+ readonly defineLibrary: UnwrapRef<typeof import('./core/utils/src/config')['defineLibrary']>
1643
+ readonly defineModel: UnwrapRef<typeof import('./core/utils/src/config')['defineModel']>
1644
+ readonly defineNotification: UnwrapRef<typeof import('./core/utils/src/config')['defineNotification']>
1645
+ readonly definePage: UnwrapRef<typeof import('./core/utils/src/config')['definePage']>
1646
+ readonly definePayment: UnwrapRef<typeof import('./core/utils/src/config')['definePayment']>
1647
+ readonly defineSearchEngine: UnwrapRef<typeof import('./core/utils/src/config')['defineSearchEngine']>
1648
+ readonly defineServices: UnwrapRef<typeof import('./core/utils/src/config')['defineServices']>
1649
+ readonly defineStorage: UnwrapRef<typeof import('./core/utils/src/config')['defineStorage']>
1650
+ readonly defineUi: UnwrapRef<typeof import('./core/utils/src/config')['defineUi']>
1651
+ readonly del: UnwrapRef<typeof import('./core/utils/src/delete')['del']>
753
1652
  readonly deleteEmptyFolders: UnwrapRef<typeof import('./core/storage/src/index')['deleteEmptyFolders']>
754
1653
  readonly deleteFiles: UnwrapRef<typeof import('./core/storage/src/index')['deleteFiles']>
755
1654
  readonly deleteFolder: UnwrapRef<typeof import('./core/storage/src/index')['deleteFolder']>
756
1655
  readonly delimiter: UnwrapRef<typeof import('./core/path/src/index')['delimiter']>
757
- readonly deploy: UnwrapRef<typeof import('../config/deploy')['deploy']>
758
1656
  readonly describe: UnwrapRef<typeof import('vitest')['describe']>
759
1657
  readonly desktopPath: UnwrapRef<typeof import('./core/path/src/index')['desktopPath']>
760
1658
  readonly detectIndent: UnwrapRef<typeof import('./core/utils/src/helpers')['detectIndent']>
761
1659
  readonly detectNewline: UnwrapRef<typeof import('./core/utils/src/helpers')['detectNewline']>
1660
+ readonly determineDebugLevel: UnwrapRef<typeof import('./core/utils/src/helpers')['determineDebugLevel']>
762
1661
  readonly determineResetPreset: UnwrapRef<typeof import('./core/utils/src/helpers')['determineResetPreset']>
763
1662
  readonly determineState: UnwrapRef<typeof import('./core/search-engine/src/helpers')['determineState']>
1663
+ readonly developmentPath: UnwrapRef<typeof import('./core/path/src/index')['developmentPath']>
1664
+ readonly dinero: UnwrapRef<typeof import('./core/utils/src/currency')['dinero']>
764
1665
  readonly dirname: UnwrapRef<typeof import('./core/path/src/index')['dirname']>
765
- readonly dispatch: UnwrapRef<typeof import('./core/events/src/index')['dispatch']>
1666
+ readonly discord: UnwrapRef<typeof import('./core/chat/src/index')['discord']>
1667
+ readonly dns: UnwrapRef<typeof import('../config/dns')['default']>
766
1668
  readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
767
1669
  readonly docsPath: UnwrapRef<typeof import('./core/path/src/index')['docsPath']>
768
1670
  readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
1671
+ readonly doesNotContain: UnwrapRef<typeof import('./core/arrays/src/index')['doesNotContain']>
769
1672
  readonly domainsPath: UnwrapRef<typeof import('./core/path/src/index')['domainsPath']>
770
1673
  readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
771
- readonly driversPath: UnwrapRef<typeof import('./core/path/src/index')['driversPath']>
772
1674
  readonly dump: UnwrapRef<typeof import('./core/logging/src/index')['dump']>
773
- readonly eagerComputed: UnwrapRef<typeof import('@vueuse/core')['eagerComputed']>
1675
+ readonly dynamodb: UnwrapRef<typeof import('./core/cache/src/index')['dynamodb']>
1676
+ readonly eagerComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['eagerComputed']>
774
1677
  readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
775
- readonly email: UnwrapRef<typeof import('./core/notifications/src/index')['email']>
1678
+ readonly email: UnwrapRef<typeof import('../config/email')['default']>
776
1679
  readonly emailPath: UnwrapRef<typeof import('./core/path/src/index')['emailPath']>
777
1680
  readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
778
1681
  readonly ensurePrefix: UnwrapRef<typeof import('./core/strings/src/utils')['ensurePrefix']>
779
1682
  readonly ensureSuffix: UnwrapRef<typeof import('./core/strings/src/utils')['ensureSuffix']>
780
- readonly env: UnwrapRef<typeof import('./core/utils/src/helpers')['env']>
1683
+ readonly env: UnwrapRef<typeof import('./core/utils/src/config')['env']>
1684
+ readonly envVariables: UnwrapRef<typeof import('./core/validation/src/validate')['envVariables']>
1685
+ readonly equal: UnwrapRef<typeof import('./core/utils/src/currency')['equal']>
781
1686
  readonly err: UnwrapRef<typeof import('./core/error-handling/src/index')['err']>
782
1687
  readonly errAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['errAsync']>
783
1688
  readonly errorHandlingPath: UnwrapRef<typeof import('./core/path/src/index')['errorHandlingPath']>
784
- readonly events: UnwrapRef<typeof import('./core/events/src/index')['events']>
1689
+ readonly eslint: UnwrapRef<typeof import('./core/lint/src/index')['eslint']>
1690
+ readonly events: UnwrapRef<typeof import('../config/events')['default']>
785
1691
  readonly eventsPath: UnwrapRef<typeof import('./core/path/src/index')['eventsPath']>
786
1692
  readonly examplesPath: UnwrapRef<typeof import('./core/path/src/index')['examplesPath']>
1693
+ readonly executeTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['executeTransition']>
787
1694
  readonly expect: UnwrapRef<typeof import('vitest')['expect']>
788
- readonly extendRef: UnwrapRef<typeof import('@vueuse/core')['extendRef']>
1695
+ readonly expo: UnwrapRef<typeof import('./core/push/src/index')['expo']>
1696
+ readonly extendRef: UnwrapRef<typeof import('./core/utils/src/vendors')['extendRef']>
789
1697
  readonly extname: UnwrapRef<typeof import('./core/path/src/index')['extname']>
1698
+ readonly fakerPath: UnwrapRef<typeof import('./core/path/src/index')['fakerPath']>
1699
+ readonly fcm: UnwrapRef<typeof import('./core/push/src/index')['fcm']>
1700
+ readonly feature: UnwrapRef<typeof import('./core/testing/src/index')['feature']>
790
1701
  readonly filesystem: UnwrapRef<typeof import('./core/storage/src/index')['filesystem']>
791
1702
  readonly filterName: UnwrapRef<typeof import('./core/search-engine/src/index')['filterName']>
792
1703
  readonly filters: UnwrapRef<typeof import('./core/search-engine/src/index')['filters']>
793
1704
  readonly flattenArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['flattenArrayable']>
794
1705
  readonly format: UnwrapRef<typeof import('./core/path/src/index')['format']>
1706
+ readonly formatTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['formatTimeAgo']>
795
1707
  readonly frameworkPath: UnwrapRef<typeof import('./core/path/src/index')['frameworkPath']>
796
1708
  readonly frameworkVersion: UnwrapRef<typeof import('./core/utils/src/helpers')['frameworkVersion']>
797
1709
  readonly fromPromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromPromise']>
@@ -799,145 +1711,171 @@ declare module 'vue' {
799
1711
  readonly fromThrowable: UnwrapRef<typeof import('./core/error-handling/src/index')['fromThrowable']>
800
1712
  readonly functionsPath: UnwrapRef<typeof import('./core/path/src/index')['functionsPath']>
801
1713
  readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
1714
+ readonly generateFactoryFile: UnwrapRef<typeof import('./core/database/src/factory/index')['generateFactoryFile']>
802
1715
  readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
803
1716
  readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
804
- readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/index')['getTypeName']>
805
- readonly git: UnwrapRef<typeof import('../config/git')['git']>
1717
+ readonly getSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['getSSRHandler']>
1718
+ readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/base')['getTypeName']>
1719
+ readonly git: UnwrapRef<typeof import('../config/git')['default']>
806
1720
  readonly gitPath: UnwrapRef<typeof import('./core/path/src/index')['gitPath']>
807
1721
  readonly goToNextPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToNextPage']>
808
1722
  readonly goToPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPage']>
809
1723
  readonly goToPrevPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPrevPage']>
1724
+ readonly greaterThan: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThan']>
1725
+ readonly greaterThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThanOrEqual']>
1726
+ readonly gupshup: UnwrapRef<typeof import('./core/sms/src/index')['gupshup']>
810
1727
  readonly h: UnwrapRef<typeof import('vue')['h']>
811
1728
  readonly hasComponents: UnwrapRef<typeof import('./core/storage/src/index')['hasComponents']>
812
1729
  readonly hasFiles: UnwrapRef<typeof import('./core/storage/src/index')['hasFiles']>
813
1730
  readonly hasFunctions: UnwrapRef<typeof import('./core/storage/src/index')['hasFunctions']>
814
- readonly hasOwn: UnwrapRef<typeof import('@vueuse/shared')['hasOwn']>
815
1731
  readonly hasOwnProperty: UnwrapRef<typeof import('./core/objects/src/index')['hasOwnProperty']>
816
1732
  readonly hasScript: UnwrapRef<typeof import('./core/utils/src/helpers')['hasScript']>
817
- readonly hashing: UnwrapRef<typeof import('../config/hashing')['hashing']>
1733
+ readonly hasSubUnits: UnwrapRef<typeof import('./core/utils/src/currency')['hasSubUnits']>
1734
+ readonly hashing: UnwrapRef<typeof import('../config/hashing')['default']>
1735
+ readonly haveSameAmount: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameAmount']>
1736
+ readonly haveSameCurrency: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameCurrency']>
818
1737
  readonly headerCase: UnwrapRef<typeof import('./core/strings/src/case')['headerCase']>
819
1738
  readonly healthPath: UnwrapRef<typeof import('./core/path/src/index')['healthPath']>
820
1739
  readonly hits: UnwrapRef<typeof import('./core/search-engine/src/index')['hits']>
821
- readonly ignorableWatch: UnwrapRef<typeof import('@vueuse/core')['ignorableWatch']>
1740
+ readonly ignorableWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['ignorableWatch']>
822
1741
  readonly increment: UnwrapRef<typeof import('../functions/counter')['increment']>
823
1742
  readonly index: UnwrapRef<typeof import('./core/search-engine/src/index')['index']>
824
1743
  readonly inject: UnwrapRef<typeof import('vue')['inject']>
825
1744
  readonly isAbsolute: UnwrapRef<typeof import('./core/path/src/index')['isAbsolute']>
826
- readonly isAlpha: UnwrapRef<typeof import('./core/strings/src/validation')['isAlpha']>
827
- readonly isAlphanumeric: UnwrapRef<typeof import('./core/strings/src/validation')['isAlphanumeric']>
1745
+ readonly isAlpha: UnwrapRef<typeof import('./core/validation/src/is')['isAlpha']>
1746
+ readonly isAlphanumeric: UnwrapRef<typeof import('./core/validation/src/is')['isAlphanumeric']>
828
1747
  readonly isAppKeySet: UnwrapRef<typeof import('./core/utils/src/helpers')['isAppKeySet']>
829
- readonly isAscii: UnwrapRef<typeof import('./core/strings/src/validation')['isAscii']>
830
- readonly isBase32: UnwrapRef<typeof import('./core/strings/src/validation')['isBase32']>
831
- readonly isBase64: UnwrapRef<typeof import('./core/strings/src/validation')['isBase64']>
832
- readonly isBoolean: UnwrapRef<typeof import('./core/utils/src/is')['isBoolean']>
833
- readonly isBrowser: UnwrapRef<typeof import('./core/utils/src/is')['isBrowser']>
834
- readonly isByteLength: UnwrapRef<typeof import('./core/strings/src/validation')['isByteLength']>
835
- readonly isClient: UnwrapRef<typeof import('@vueuse/shared')['isClient']>
836
- readonly isCreditCard: UnwrapRef<typeof import('./core/strings/src/validation')['isCreditCard']>
837
- readonly isCurrency: UnwrapRef<typeof import('./core/strings/src/validation')['isCurrency']>
1748
+ readonly isArray: UnwrapRef<typeof import('./core/validation/src/is')['isArray']>
1749
+ readonly isAscii: UnwrapRef<typeof import('./core/validation/src/is')['isAscii']>
1750
+ readonly isBase32: UnwrapRef<typeof import('./core/validation/src/is')['isBase32']>
1751
+ readonly isBase64: UnwrapRef<typeof import('./core/validation/src/is')['isBase64']>
1752
+ readonly isBoolean: UnwrapRef<typeof import('./core/validation/src/is')['isBoolean']>
1753
+ readonly isBrowser: UnwrapRef<typeof import('./core/validation/src/is')['isBrowser']>
1754
+ readonly isByteLength: UnwrapRef<typeof import('./core/validation/src/is')['isByteLength']>
1755
+ readonly isCreditCard: UnwrapRef<typeof import('./core/validation/src/is')['isCreditCard']>
1756
+ readonly isCurrency: UnwrapRef<typeof import('./core/validation/src/is')['isCurrency']>
838
1757
  readonly isDark: UnwrapRef<typeof import('../functions/dark')['isDark']>
839
- readonly isDataURI: UnwrapRef<typeof import('./core/strings/src/validation')['isDataURI']>
840
- readonly isDate: UnwrapRef<typeof import('./core/strings/src/validation')['isDate']>
1758
+ readonly isDataURI: UnwrapRef<typeof import('./core/validation/src/is')['isDataURI']>
1759
+ readonly isDate: UnwrapRef<typeof import('./core/validation/src/is')['isDate']>
841
1760
  readonly isDeepEqual: UnwrapRef<typeof import('./core/utils/src/equal')['isDeepEqual']>
842
- readonly isDef: UnwrapRef<typeof import('./core/utils/src/is')['isDef']>
843
- readonly isDefined: UnwrapRef<typeof import('@vueuse/core')['isDefined']>
844
- readonly isEmail: UnwrapRef<typeof import('./core/strings/src/validation')['isEmail']>
845
- readonly isFQDN: UnwrapRef<typeof import('./core/strings/src/validation')['isFQDN']>
1761
+ readonly isDef: UnwrapRef<typeof import('./core/validation/src/is')['isDef']>
1762
+ readonly isDefined: UnwrapRef<typeof import('./core/utils/src/vendors')['isDefined']>
1763
+ readonly isEmail: UnwrapRef<typeof import('./core/validation/src/is')['isEmail']>
1764
+ readonly isEven: UnwrapRef<typeof import('./core/validation/src/is')['isEven']>
1765
+ readonly isEvenOrOdd: UnwrapRef<typeof import('./core/validation/src/is')['isEvenOrOdd']>
1766
+ readonly isFQDN: UnwrapRef<typeof import('./core/validation/src/is')['isFQDN']>
846
1767
  readonly isFile: UnwrapRef<typeof import('./core/storage/src/index')['isFile']>
1768
+ readonly isFloat: UnwrapRef<typeof import('./core/validation/src/is')['isFloat']>
847
1769
  readonly isFolder: UnwrapRef<typeof import('./core/storage/src/index')['isFolder']>
848
- readonly isFullWidth: UnwrapRef<typeof import('./core/strings/src/validation')['isFullWidth']>
849
- readonly isFunction: UnwrapRef<typeof import('./core/utils/src/is')['isFunction']>
850
- readonly isHSL: UnwrapRef<typeof import('./core/strings/src/validation')['isHSL']>
851
- readonly isHalfWidth: UnwrapRef<typeof import('./core/strings/src/validation')['isHalfWidth']>
852
- readonly isHash: UnwrapRef<typeof import('./core/strings/src/validation')['isHash']>
853
- readonly isHexColor: UnwrapRef<typeof import('./core/strings/src/validation')['isHexColor']>
854
- readonly isHexadecimal: UnwrapRef<typeof import('./core/strings/src/validation')['isHexadecimal']>
855
- readonly isIBAN: UnwrapRef<typeof import('./core/strings/src/validation')['isIBAN']>
856
- readonly isIOS: UnwrapRef<typeof import('@vueuse/shared')['isIOS']>
857
- readonly isIP: UnwrapRef<typeof import('./core/strings/src/validation')['isIP']>
858
- readonly isIPRange: UnwrapRef<typeof import('./core/strings/src/validation')['isIPRange']>
859
- readonly isISBN: UnwrapRef<typeof import('./core/strings/src/validation')['isISBN']>
860
- readonly isISIN: UnwrapRef<typeof import('./core/strings/src/validation')['isISIN']>
861
- readonly isISO31661Alpha2: UnwrapRef<typeof import('./core/strings/src/validation')['isISO31661Alpha2']>
862
- readonly isISO31661Alpha3: UnwrapRef<typeof import('./core/strings/src/validation')['isISO31661Alpha3']>
863
- readonly isISO8601: UnwrapRef<typeof import('./core/strings/src/validation')['isISO8601']>
864
- readonly isISRC: UnwrapRef<typeof import('./core/strings/src/validation')['isISRC']>
865
- readonly isISSN: UnwrapRef<typeof import('./core/strings/src/validation')['isISSN']>
866
- readonly isIdentityCard: UnwrapRef<typeof import('./core/strings/src/validation')['isIdentityCard']>
867
- readonly isJSON: UnwrapRef<typeof import('./core/strings/src/validation')['isJSON']>
868
- readonly isJWT: UnwrapRef<typeof import('./core/strings/src/validation')['isJWT']>
1770
+ readonly isFullWidth: UnwrapRef<typeof import('./core/validation/src/is')['isFullWidth']>
1771
+ readonly isFunction: UnwrapRef<typeof import('./core/validation/src/is')['isFunction']>
1772
+ readonly isHSL: UnwrapRef<typeof import('./core/validation/src/is')['isHSL']>
1773
+ readonly isHalfWidth: UnwrapRef<typeof import('./core/validation/src/is')['isHalfWidth']>
1774
+ readonly isHash: UnwrapRef<typeof import('./core/validation/src/is')['isHash']>
1775
+ readonly isHexColor: UnwrapRef<typeof import('./core/validation/src/is')['isHexColor']>
1776
+ readonly isHexadecimal: UnwrapRef<typeof import('./core/validation/src/is')['isHexadecimal']>
1777
+ readonly isIBAN: UnwrapRef<typeof import('./core/validation/src/is')['isIBAN']>
1778
+ readonly isIP: UnwrapRef<typeof import('./core/validation/src/is')['isIP']>
1779
+ readonly isIPRange: UnwrapRef<typeof import('./core/validation/src/is')['isIPRange']>
1780
+ readonly isISBN: UnwrapRef<typeof import('./core/validation/src/is')['isISBN']>
1781
+ readonly isISIN: UnwrapRef<typeof import('./core/validation/src/is')['isISIN']>
1782
+ readonly isISO31661Alpha2: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha2']>
1783
+ readonly isISO31661Alpha3: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha3']>
1784
+ readonly isISO8601: UnwrapRef<typeof import('./core/validation/src/is')['isISO8601']>
1785
+ readonly isISRC: UnwrapRef<typeof import('./core/validation/src/is')['isISRC']>
1786
+ readonly isISSN: UnwrapRef<typeof import('./core/validation/src/is')['isISSN']>
1787
+ readonly isIdentityCard: UnwrapRef<typeof import('./core/validation/src/is')['isIdentityCard']>
1788
+ readonly isInteger: UnwrapRef<typeof import('./core/validation/src/is')['isInteger']>
1789
+ readonly isIntegerOrFloat: UnwrapRef<typeof import('./core/validation/src/is')['isIntegerOrFloat']>
1790
+ readonly isJSON: UnwrapRef<typeof import('./core/validation/src/is')['isJSON']>
1791
+ readonly isJWT: UnwrapRef<typeof import('./core/validation/src/is')['isJWT']>
869
1792
  readonly isKeyOf: UnwrapRef<typeof import('./core/objects/src/index')['isKeyOf']>
870
- readonly isLatLong: UnwrapRef<typeof import('./core/strings/src/validation')['isLatLong']>
871
- readonly isLatitude: UnwrapRef<typeof import('./core/strings/src/validation')['isLatitude']>
872
- readonly isLongitude: UnwrapRef<typeof import('./core/strings/src/validation')['isLongitude']>
873
- readonly isMACAddress: UnwrapRef<typeof import('./core/strings/src/validation')['isMACAddress']>
1793
+ readonly isLatLong: UnwrapRef<typeof import('./core/validation/src/is')['isLatLong']>
1794
+ readonly isLatitude: UnwrapRef<typeof import('./core/validation/src/is')['isLatitude']>
1795
+ readonly isLongitude: UnwrapRef<typeof import('./core/validation/src/is')['isLongitude']>
1796
+ readonly isMACAddress: UnwrapRef<typeof import('./core/validation/src/is')['isMACAddress']>
874
1797
  readonly isManifest: UnwrapRef<typeof import('./core/utils/src/helpers')['isManifest']>
875
- readonly isMap: UnwrapRef<typeof import('./core/utils/src/is')['isMap']>
876
- readonly isMimeType: UnwrapRef<typeof import('./core/strings/src/validation')['isMimeType']>
877
- readonly isMobilePhone: UnwrapRef<typeof import('./core/strings/src/validation')['isMobilePhone']>
878
- readonly isMongoId: UnwrapRef<typeof import('./core/strings/src/validation')['isMongoId']>
879
- readonly isNumber: UnwrapRef<typeof import('./core/utils/src/is')['isNumber']>
880
- readonly isNumeric: UnwrapRef<typeof import('./core/strings/src/validation')['isNumeric']>
881
- readonly isObject: UnwrapRef<typeof import('./core/utils/src/is')['isObject']>
1798
+ readonly isMap: UnwrapRef<typeof import('./core/validation/src/is')['isMap']>
1799
+ readonly isMimeType: UnwrapRef<typeof import('./core/validation/src/is')['isMimeType']>
1800
+ readonly isMobilePhone: UnwrapRef<typeof import('./core/validation/src/is')['isMobilePhone']>
1801
+ readonly isMongoId: UnwrapRef<typeof import('./core/validation/src/is')['isMongoId']>
1802
+ readonly isNegative: UnwrapRef<typeof import('./core/validation/src/is')['isNegative']>
1803
+ readonly isNull: UnwrapRef<typeof import('./core/validation/src/is')['isNull']>
1804
+ readonly isNumber: UnwrapRef<typeof import('./core/validation/src/is')['isNumber']>
1805
+ readonly isNumeric: UnwrapRef<typeof import('./core/validation/src/is')['isNumeric']>
1806
+ readonly isObject: UnwrapRef<typeof import('./core/validation/src/is')['isObject']>
1807
+ readonly isOdd: UnwrapRef<typeof import('./core/validation/src/is')['isOdd']>
882
1808
  readonly isOptionalString: UnwrapRef<typeof import('./core/utils/src/helpers')['isOptionalString']>
883
1809
  readonly isPlural: UnwrapRef<typeof import('./core/strings/src/pluralize')['isPlural']>
884
- readonly isPostalCode: UnwrapRef<typeof import('./core/strings/src/validation')['isPostalCode']>
1810
+ readonly isPositive: UnwrapRef<typeof import('./core/validation/src/is')['isPositive']>
1811
+ readonly isPositiveOrNegative: UnwrapRef<typeof import('./core/validation/src/is')['isPositiveOrNegative']>
1812
+ readonly isPostalCode: UnwrapRef<typeof import('./core/validation/src/is')['isPostalCode']>
1813
+ readonly isPrimitive: UnwrapRef<typeof import('./core/validation/src/is')['isPrimitive']>
885
1814
  readonly isProjectCreated: UnwrapRef<typeof import('./core/utils/src/helpers')['isProjectCreated']>
886
- readonly isPromise: UnwrapRef<typeof import('./core/utils/src/is')['isPromise']>
1815
+ readonly isPromise: UnwrapRef<typeof import('./core/validation/src/is')['isPromise']>
887
1816
  readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
888
1817
  readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
889
1818
  readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
890
1819
  readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
891
- readonly isServer: UnwrapRef<typeof import('./core/utils/src/is')['isServer']>
892
- readonly isSet: UnwrapRef<typeof import('./core/utils/src/is')['isSet']>
1820
+ readonly isRegExp: UnwrapRef<typeof import('./core/validation/src/is')['isRegExp']>
1821
+ readonly isServer: UnwrapRef<typeof import('./core/validation/src/is')['isServer']>
1822
+ readonly isSet: UnwrapRef<typeof import('./core/validation/src/is')['isSet']>
893
1823
  readonly isSingular: UnwrapRef<typeof import('./core/strings/src/pluralize')['isSingular']>
894
- readonly isString: UnwrapRef<typeof import('./core/utils/src/is')['isString']>
895
- readonly isStrongPassword: UnwrapRef<typeof import('./core/strings/src/validation')['isStrongPassword']>
1824
+ readonly isString: UnwrapRef<typeof import('./core/validation/src/is')['isString']>
1825
+ readonly isStrongPassword: UnwrapRef<typeof import('./core/validation/src/is')['isStrongPassword']>
1826
+ readonly isSymbol: UnwrapRef<typeof import('./core/validation/src/is')['isSymbol']>
896
1827
  readonly isTruthy: UnwrapRef<typeof import('./core/utils/src/guards')['isTruthy']>
897
- readonly isURL: UnwrapRef<typeof import('./core/strings/src/validation')['isURL']>
898
- readonly isUUID: UnwrapRef<typeof import('./core/strings/src/validation')['isUUID']>
899
- readonly isWindow: UnwrapRef<typeof import('./core/utils/src/is')['isWindow']>
1828
+ readonly isURL: UnwrapRef<typeof import('./core/validation/src/is')['isURL']>
1829
+ readonly isUUID: UnwrapRef<typeof import('./core/validation/src/is')['isUUID']>
1830
+ readonly isUndefined: UnwrapRef<typeof import('./core/validation/src/is')['isUndefined']>
1831
+ readonly isWindow: UnwrapRef<typeof import('./core/validation/src/is')['isWindow']>
1832
+ readonly isZero: UnwrapRef<typeof import('./core/utils/src/currency')['isZero']>
900
1833
  readonly it: UnwrapRef<typeof import('vitest')['it']>
901
1834
  readonly join: UnwrapRef<typeof import('./core/path/src/index')['join']>
902
1835
  readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/case')['kebabCase']>
903
1836
  readonly langPath: UnwrapRef<typeof import('./core/path/src/index')['langPath']>
904
1837
  readonly last: UnwrapRef<typeof import('./core/arrays/src/index')['last']>
905
1838
  readonly lastPageNumber: UnwrapRef<typeof import('./core/search-engine/src/index')['lastPageNumber']>
906
- readonly library: UnwrapRef<typeof import('../config/library')['library']>
1839
+ readonly lessThan: UnwrapRef<typeof import('./core/utils/src/currency')['lessThan']>
1840
+ readonly lessThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['lessThanOrEqual']>
1841
+ readonly library: UnwrapRef<typeof import('../config/library')['default']>
907
1842
  readonly libraryEntryPath: UnwrapRef<typeof import('./core/path/src/index')['libraryEntryPath']>
908
1843
  readonly lintPath: UnwrapRef<typeof import('./core/path/src/index')['lintPath']>
909
- readonly listen: UnwrapRef<typeof import('./core/events/src/index')['listen']>
910
1844
  readonly log: UnwrapRef<typeof import('./core/logging/src/index')['log']>
911
1845
  readonly loggingPath: UnwrapRef<typeof import('./core/path/src/index')['loggingPath']>
912
- readonly logicAnd: UnwrapRef<typeof import('@vueuse/math')['logicAnd']>
913
- readonly logicNot: UnwrapRef<typeof import('@vueuse/math')['logicNot']>
914
- readonly logicOr: UnwrapRef<typeof import('@vueuse/math')['logicOr']>
915
- readonly loop: UnwrapRef<typeof import('./core/utils/src/index')['loop']>
916
- readonly makeDestructurable: UnwrapRef<typeof import('@vueuse/core')['makeDestructurable']>
1846
+ readonly logicNot: UnwrapRef<typeof import('./core/utils/src/math')['logicNot']>
1847
+ readonly logicOr: UnwrapRef<typeof import('./core/utils/src/math')['logicOr']>
1848
+ readonly loop: UnwrapRef<typeof import('./core/utils/src/base')['loop']>
917
1849
  readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
1850
+ readonly mapGamepadToXbox360Controller: UnwrapRef<typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']>
918
1851
  readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
1852
+ readonly maximum: UnwrapRef<typeof import('./core/utils/src/currency')['maximum']>
919
1853
  readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
1854
+ readonly memcached: UnwrapRef<typeof import('./core/cache/src/index')['memcached']>
920
1855
  readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['mergeArrayable']>
921
- readonly mitt: UnwrapRef<typeof import('./core/events/src/index')['mitt']>
1856
+ readonly migrate: UnwrapRef<typeof import('./core/database/src/migrations/index')['migrate']>
1857
+ readonly minimum: UnwrapRef<typeof import('./core/utils/src/currency')['minimum']>
1858
+ readonly modelsPath: UnwrapRef<typeof import('./core/path/src/index')['modelsPath']>
922
1859
  readonly modulesPath: UnwrapRef<typeof import('./core/path/src/index')['modulesPath']>
1860
+ readonly money: UnwrapRef<typeof import('./core/utils/src/currency')['money']>
923
1861
  readonly move: UnwrapRef<typeof import('./core/arrays/src/index')['move']>
1862
+ readonly multiply: UnwrapRef<typeof import('./core/utils/src/currency')['multiply']>
1863
+ readonly nexmo: UnwrapRef<typeof import('./core/sms/src/index')['nexmo']>
924
1864
  readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
925
1865
  readonly noCase: UnwrapRef<typeof import('./core/strings/src/case')['noCase']>
926
1866
  readonly noNull: UnwrapRef<typeof import('./core/utils/src/guards')['noNull']>
927
- readonly noop: UnwrapRef<typeof import('./core/utils/src/index')['noop']>
928
1867
  readonly normalize: UnwrapRef<typeof import('./core/path/src/index')['normalize']>
1868
+ readonly normalizeScale: UnwrapRef<typeof import('./core/utils/src/currency')['normalizeScale']>
929
1869
  readonly normalizeString: UnwrapRef<typeof import('./core/path/src/index')['normalizeString']>
930
- readonly notNullish: UnwrapRef<typeof import('./core/utils/src/guards')['notNullish']>
1870
+ readonly not: UnwrapRef<typeof import('./core/utils/src/math')['not']>
931
1871
  readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
932
- readonly notification: UnwrapRef<typeof import('./core/notifications/src/index')['notification']>
1872
+ readonly notification: UnwrapRef<typeof import('../config/notification')['default']>
933
1873
  readonly notificationsPath: UnwrapRef<typeof import('./core/path/src/index')['notificationsPath']>
934
- readonly now: UnwrapRef<typeof import('@vueuse/shared')['now']>
935
1874
  readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
936
1875
  readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
937
1876
  readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
938
1877
  readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
939
1878
  readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
940
- readonly off: UnwrapRef<typeof import('./core/events/src/index')['off']>
941
1879
  readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
942
1880
  readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
943
1881
  readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
@@ -946,341 +1884,342 @@ declare module 'vue' {
946
1884
  readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
947
1885
  readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
948
1886
  readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
949
- readonly onClickOutside: UnwrapRef<typeof import('@vueuse/core')['onClickOutside']>
1887
+ readonly onClickOutside: UnwrapRef<typeof import('./core/utils/src/vendors')['onClickOutside']>
950
1888
  readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
951
1889
  readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
952
- readonly onKeyStroke: UnwrapRef<typeof import('@vueuse/core')['onKeyStroke']>
953
- readonly onLongPress: UnwrapRef<typeof import('@vueuse/core')['onLongPress']>
1890
+ readonly onKeyDown: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyDown']>
1891
+ readonly onKeyPressed: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyPressed']>
1892
+ readonly onKeyStroke: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyStroke']>
1893
+ readonly onKeyUp: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyUp']>
1894
+ readonly onLongPress: UnwrapRef<typeof import('./core/utils/src/vendors')['onLongPress']>
954
1895
  readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
955
1896
  readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
956
1897
  readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
957
1898
  readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
958
1899
  readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
959
- readonly onStartTyping: UnwrapRef<typeof import('@vueuse/core')['onStartTyping']>
1900
+ readonly onStartTyping: UnwrapRef<typeof import('./core/utils/src/vendors')['onStartTyping']>
960
1901
  readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
961
1902
  readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
1903
+ readonly onboardingPath: UnwrapRef<typeof import('./core/path/src/index')['onboardingPath']>
1904
+ readonly or: UnwrapRef<typeof import('./core/utils/src/math')['or']>
1905
+ readonly ormPath: UnwrapRef<typeof import('./core/path/src/index')['ormPath']>
962
1906
  readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
963
1907
  readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
964
1908
  readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
965
1909
  readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
966
1910
  readonly parse: UnwrapRef<typeof import('./core/path/src/index')['parse']>
1911
+ readonly parseYaml: UnwrapRef<typeof import('./core/utils/src/helpers')['parseYaml']>
967
1912
  readonly partition: UnwrapRef<typeof import('./core/arrays/src/index')['partition']>
968
1913
  readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
969
1914
  readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
970
1915
  readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
971
1916
  readonly pathPath: UnwrapRef<typeof import('./core/path/src/index')['pathPath']>
972
- readonly pausableWatch: UnwrapRef<typeof import('@vueuse/core')['pausableWatch']>
1917
+ readonly payment: UnwrapRef<typeof import('../config/payment')['default']>
973
1918
  readonly paymentsPath: UnwrapRef<typeof import('./core/path/src/index')['paymentsPath']>
974
1919
  readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
1920
+ readonly plivo: UnwrapRef<typeof import('./core/sms/src/index')['plivo']>
975
1921
  readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
976
1922
  readonly preferredDark: UnwrapRef<typeof import('../functions/dark')['preferredDark']>
1923
+ readonly presetForms: UnwrapRef<typeof import('@stacksjs/ui')['presetForms']>
977
1924
  readonly projectPath: UnwrapRef<typeof import('./core/path/src/index')['projectPath']>
978
1925
  readonly provide: UnwrapRef<typeof import('vue')['provide']>
979
1926
  readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
980
1927
  readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
1928
+ readonly queryBuilderPath: UnwrapRef<typeof import('./core/path/src/index')['queryBuilderPath']>
981
1929
  readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
982
- readonly rand: UnwrapRef<typeof import('@vueuse/shared')['rand']>
1930
+ readonly rand: UnwrapRef<typeof import('./core/utils/src/math')['rand']>
983
1931
  readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
984
1932
  readonly range: UnwrapRef<typeof import('./core/arrays/src/index')['range']>
985
- readonly ray: UnwrapRef<typeof import('./core/logging/src/index')['ray']>
986
- readonly reactify: UnwrapRef<typeof import('@vueuse/core')['reactify']>
987
- readonly reactifyObject: UnwrapRef<typeof import('@vueuse/core')['reactifyObject']>
988
1933
  readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
989
- readonly reactiveComputed: UnwrapRef<typeof import('@vueuse/core')['reactiveComputed']>
990
- readonly reactiveOmit: UnwrapRef<typeof import('@vueuse/core')['reactiveOmit']>
991
- readonly reactivePick: UnwrapRef<typeof import('@vueuse/core')['reactivePick']>
992
1934
  readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
1935
+ readonly readPackageJson: UnwrapRef<typeof import('./core/storage/src/index')['readPackageJson']>
993
1936
  readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
994
1937
  readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
995
1938
  readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
1939
+ readonly redis: UnwrapRef<typeof import('./core/cache/src/index')['redis']>
996
1940
  readonly ref: UnwrapRef<typeof import('vue')['ref']>
997
- readonly refAutoReset: UnwrapRef<typeof import('@vueuse/core')['refAutoReset']>
998
- readonly refDebounced: UnwrapRef<typeof import('@vueuse/core')['refDebounced']>
999
- readonly refDefault: UnwrapRef<typeof import('@vueuse/core')['refDefault']>
1000
- readonly refThrottled: UnwrapRef<typeof import('@vueuse/core')['refThrottled']>
1001
- readonly refWithControl: UnwrapRef<typeof import('@vueuse/core')['refWithControl']>
1002
1941
  readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
1003
1942
  readonly remove: UnwrapRef<typeof import('./core/arrays/src/index')['remove']>
1943
+ readonly renderHeadToString: UnwrapRef<typeof import('./core/utils/src/vendors')['renderHeadToString']>
1004
1944
  readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
1005
1945
  readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
1006
- readonly resolveDirective: UnwrapRef<typeof import('vue')['resolveDirective']>
1007
- readonly resolveRef: UnwrapRef<typeof import('@vueuse/core')['resolveRef']>
1008
- readonly resolveUnref: UnwrapRef<typeof import('@vueuse/core')['resolveUnref']>
1009
1946
  readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
1010
- readonly router: UnwrapRef<typeof import('./core/router/src/index')['router']>
1947
+ readonly rimraf: UnwrapRef<typeof import('./core/utils/src/delete')['rimraf']>
1011
1948
  readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
1012
1949
  readonly routesPath: UnwrapRef<typeof import('./core/path/src/index')['routesPath']>
1013
1950
  readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
1014
1951
  readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
1015
1952
  readonly sample: UnwrapRef<typeof import('./core/arrays/src/index')['sample']>
1953
+ readonly schedulerPath: UnwrapRef<typeof import('./core/path/src/index')['schedulerPath']>
1016
1954
  readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
1017
- readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['searchEngine']>
1955
+ readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
1018
1956
  readonly searchEnginePath: UnwrapRef<typeof import('./core/path/src/index')['searchEnginePath']>
1019
1957
  readonly searchFilters: UnwrapRef<typeof import('./core/search-engine/src/index')['searchFilters']>
1020
1958
  readonly searchParams: UnwrapRef<typeof import('./core/search-engine/src/index')['searchParams']>
1021
1959
  readonly securityPath: UnwrapRef<typeof import('./core/path/src/index')['securityPath']>
1960
+ readonly seed: UnwrapRef<typeof import('./core/database/src/seeder/index')['seed']>
1961
+ readonly semver: UnwrapRef<typeof import('./core/utils/src/versions')['semver']>
1022
1962
  readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/case')['sentenceCase']>
1023
1963
  readonly sep: UnwrapRef<typeof import('./core/path/src/index')['sep']>
1024
1964
  readonly serverPath: UnwrapRef<typeof import('./core/path/src/index')['serverPath']>
1025
1965
  readonly serverlessPath: UnwrapRef<typeof import('./core/path/src/index')['serverlessPath']>
1026
- readonly services: UnwrapRef<typeof import('../config/services')['services']>
1966
+ readonly services: UnwrapRef<typeof import('../config/services')['default']>
1027
1967
  readonly setEnvValue: UnwrapRef<typeof import('./core/utils/src/helpers')['setEnvValue']>
1968
+ readonly setSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['setSSRHandler']>
1028
1969
  readonly setTotalHits: UnwrapRef<typeof import('./core/search-engine/src/index')['setTotalHits']>
1970
+ readonly settingsPath: UnwrapRef<typeof import('./core/path/src/index')['settingsPath']>
1029
1971
  readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
1030
1972
  readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
1031
1973
  readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
1032
1974
  readonly shuffle: UnwrapRef<typeof import('./core/arrays/src/index')['shuffle']>
1975
+ readonly signalsPath: UnwrapRef<typeof import('./core/path/src/index')['signalsPath']>
1033
1976
  readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
1977
+ readonly slack: UnwrapRef<typeof import('./core/chat/src/index')['slack']>
1034
1978
  readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
1035
1979
  readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
1036
- readonly sms: UnwrapRef<typeof import('./core/notifications/src/index')['sms']>
1980
+ readonly slug: UnwrapRef<typeof import('./core/strings/src/utils')['slug']>
1981
+ readonly sms77: UnwrapRef<typeof import('./core/sms/src/index')['sms77']>
1037
1982
  readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
1038
1983
  readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
1984
+ readonly sns: UnwrapRef<typeof import('./core/sms/src/index')['sns']>
1039
1985
  readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
1040
1986
  readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
1041
- readonly src: UnwrapRef<typeof import('./core/ui/src/index')['default']>
1987
+ readonly src: UnwrapRef<typeof import('./core/storage/src/index')['default']>
1042
1988
  readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
1043
- readonly storage: UnwrapRef<typeof import('../config/storage')['storage']>
1989
+ readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
1044
1990
  readonly storagePath: UnwrapRef<typeof import('./core/path/src/index')['storagePath']>
1045
1991
  readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
1992
+ readonly stripe: UnwrapRef<typeof import('./core/payments/src/index')['stripe']>
1993
+ readonly subtract: UnwrapRef<typeof import('./core/utils/src/currency')['subtract']>
1046
1994
  readonly suite: UnwrapRef<typeof import('vitest')['suite']>
1047
- readonly syncRef: UnwrapRef<typeof import('@vueuse/core')['syncRef']>
1048
- readonly syncRefs: UnwrapRef<typeof import('@vueuse/core')['syncRefs']>
1995
+ readonly syncRef: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRef']>
1996
+ readonly syncRefs: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRefs']>
1049
1997
  readonly tablesPath: UnwrapRef<typeof import('./core/path/src/index')['tablesPath']>
1050
1998
  readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
1999
+ readonly teams: UnwrapRef<typeof import('./core/chat/src/index')['teams']>
2000
+ readonly telnyx: UnwrapRef<typeof import('./core/sms/src/index')['telnyx']>
1051
2001
  readonly template: UnwrapRef<typeof import('./core/strings/src/utils')['template']>
1052
- readonly templateRef: UnwrapRef<typeof import('@vueuse/core')['templateRef']>
2002
+ readonly templateRef: UnwrapRef<typeof import('./core/utils/src/vendors')['templateRef']>
2003
+ readonly termii: UnwrapRef<typeof import('./core/sms/src/index')['termii']>
1053
2004
  readonly test: UnwrapRef<typeof import('vitest')['test']>
1054
2005
  readonly testingPath: UnwrapRef<typeof import('./core/path/src/index')['testingPath']>
1055
2006
  readonly testsPath: UnwrapRef<typeof import('./core/path/src/index')['testsPath']>
1056
- readonly throttle: UnwrapRef<typeof import('./core/utils/src/vendor')['throttle']>
1057
- readonly throttledRef: UnwrapRef<typeof import('@vueuse/core')['throttledRef']>
1058
- readonly throttledWatch: UnwrapRef<typeof import('@vueuse/core')['throttledWatch']>
1059
- readonly timestamp: UnwrapRef<typeof import('@vueuse/shared')['timestamp']>
2007
+ readonly throttle: UnwrapRef<typeof import('./core/utils/src/throttle')['throttle']>
2008
+ readonly throttledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledRef']>
2009
+ readonly throttledWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledWatch']>
2010
+ readonly titleCase: UnwrapRef<typeof import('./core/strings/src/case')['titleCase']>
1060
2011
  readonly toArray: UnwrapRef<typeof import('./core/arrays/src/index')['toArray']>
2012
+ readonly toDecimal: UnwrapRef<typeof import('./core/utils/src/currency')['toDecimal']>
1061
2013
  readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
1062
2014
  readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
1063
- readonly toReactive: UnwrapRef<typeof import('@vueuse/core')['toReactive']>
2015
+ readonly toReactive: UnwrapRef<typeof import('./core/utils/src/vendors')['toReactive']>
1064
2016
  readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
1065
2017
  readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
1066
- readonly toString: UnwrapRef<typeof import('./core/utils/src/index')['toString']>
2018
+ readonly toSnapshot: UnwrapRef<typeof import('./core/utils/src/currency')['toSnapshot']>
2019
+ readonly toString: UnwrapRef<typeof import('./core/utils/src/base')['toString']>
2020
+ readonly toUnits: UnwrapRef<typeof import('./core/utils/src/currency')['toUnits']>
1067
2021
  readonly toggleDark: UnwrapRef<typeof import('../functions/dark')['toggleDark']>
1068
2022
  readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
2023
+ readonly transformerCompileClass: UnwrapRef<typeof import('@stacksjs/ui')['transformerCompileClass']>
1069
2024
  readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
1070
- readonly tryOnBeforeMount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeMount']>
1071
- readonly tryOnBeforeUnmount: UnwrapRef<typeof import('@vueuse/core')['tryOnBeforeUnmount']>
1072
- readonly tryOnMounted: UnwrapRef<typeof import('@vueuse/core')['tryOnMounted']>
1073
- readonly tryOnScopeDispose: UnwrapRef<typeof import('@vueuse/core')['tryOnScopeDispose']>
1074
- readonly tryOnUnmounted: UnwrapRef<typeof import('@vueuse/core')['tryOnUnmounted']>
2025
+ readonly trimScale: UnwrapRef<typeof import('./core/utils/src/currency')['trimScale']>
2026
+ readonly tryOnBeforeMount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeMount']>
2027
+ readonly tryOnBeforeUnmount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']>
2028
+ readonly tryOnMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnMounted']>
2029
+ readonly tryOnScopeDispose: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnScopeDispose']>
2030
+ readonly tryOnUnmounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnUnmounted']>
2031
+ readonly twilio: UnwrapRef<typeof import('./core/sms/src/index')['twilio']>
1075
2032
  readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
1076
- readonly ui: UnwrapRef<typeof import('../config/ui')['ui']>
2033
+ readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
1077
2034
  readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
1078
2035
  readonly uniq: UnwrapRef<typeof import('./core/arrays/src/index')['uniq']>
1079
2036
  readonly uniqueBy: UnwrapRef<typeof import('./core/arrays/src/index')['uniqueBy']>
1080
- readonly unocss: UnwrapRef<typeof import('./core/ui/src/unocss')['default']>
2037
+ readonly unit: UnwrapRef<typeof import('./core/testing/src/index')['unit']>
1081
2038
  readonly unref: UnwrapRef<typeof import('vue')['unref']>
1082
- readonly unrefElement: UnwrapRef<typeof import('@vueuse/core')['unrefElement']>
1083
- readonly until: UnwrapRef<typeof import('@vueuse/core')['until']>
2039
+ readonly unrefElement: UnwrapRef<typeof import('./core/utils/src/vendors')['unrefElement']>
2040
+ readonly until: UnwrapRef<typeof import('./core/utils/src/vendors')['until']>
1084
2041
  readonly updateConfigFile: UnwrapRef<typeof import('./core/storage/src/index')['updateConfigFile']>
1085
- readonly useAbs: UnwrapRef<typeof import('@vueuse/math')['useAbs']>
1086
- readonly useActiveElement: UnwrapRef<typeof import('@vueuse/core')['useActiveElement']>
1087
- readonly useArrayEvery: UnwrapRef<typeof import('@vueuse/core')['useArrayEvery']>
1088
- readonly useArrayFilter: UnwrapRef<typeof import('@vueuse/core')['useArrayFilter']>
1089
- readonly useArrayFind: UnwrapRef<typeof import('@vueuse/core')['useArrayFind']>
1090
- readonly useArrayFindIndex: UnwrapRef<typeof import('@vueuse/core')['useArrayFindIndex']>
1091
- readonly useArrayJoin: UnwrapRef<typeof import('@vueuse/core')['useArrayJoin']>
1092
- readonly useArrayMap: UnwrapRef<typeof import('@vueuse/core')['useArrayMap']>
1093
- readonly useArrayReduce: UnwrapRef<typeof import('@vueuse/core')['useArrayReduce']>
1094
- readonly useArraySome: UnwrapRef<typeof import('@vueuse/core')['useArraySome']>
1095
- readonly useArrayUnique: UnwrapRef<typeof import('@vueuse/core')['useArrayUnique']>
1096
- readonly useAsyncQueue: UnwrapRef<typeof import('@vueuse/core')['useAsyncQueue']>
1097
- readonly useAsyncState: UnwrapRef<typeof import('@vueuse/core')['useAsyncState']>
2042
+ readonly upstash: UnwrapRef<typeof import('./core/cache/src/index')['upstash']>
2043
+ readonly useAbs: UnwrapRef<typeof import('./core/utils/src/math')['useAbs']>
2044
+ readonly useActiveElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useActiveElement']>
2045
+ readonly useAnimate: UnwrapRef<typeof import('./core/utils/src/vendors')['useAnimate']>
2046
+ readonly useAsyncQueue: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncQueue']>
2047
+ readonly useAsyncState: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncState']>
1098
2048
  readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
1099
- readonly useAverage: UnwrapRef<typeof import('@vueuse/math')['useAverage']>
1100
- readonly useBase64: UnwrapRef<typeof import('@vueuse/core')['useBase64']>
1101
- readonly useBattery: UnwrapRef<typeof import('@vueuse/core')['useBattery']>
1102
- readonly useBluetooth: UnwrapRef<typeof import('@vueuse/core')['useBluetooth']>
1103
- readonly useBreakpoints: UnwrapRef<typeof import('@vueuse/core')['useBreakpoints']>
1104
- readonly useBroadcastChannel: UnwrapRef<typeof import('@vueuse/core')['useBroadcastChannel']>
1105
- readonly useBrowserLocation: UnwrapRef<typeof import('@vueuse/core')['useBrowserLocation']>
1106
- readonly useCached: UnwrapRef<typeof import('@vueuse/core')['useCached']>
1107
- readonly useCeil: UnwrapRef<typeof import('@vueuse/math')['useCeil']>
2049
+ readonly useAverage: UnwrapRef<typeof import('./core/utils/src/math')['useAverage']>
2050
+ readonly useBase64: UnwrapRef<typeof import('./core/utils/src/vendors')['useBase64']>
2051
+ readonly useBattery: UnwrapRef<typeof import('./core/utils/src/vendors')['useBattery']>
2052
+ readonly useBluetooth: UnwrapRef<typeof import('./core/utils/src/vendors')['useBluetooth']>
2053
+ readonly useBreakpoints: UnwrapRef<typeof import('./core/utils/src/vendors')['useBreakpoints']>
2054
+ readonly useBroadcastChannel: UnwrapRef<typeof import('./core/utils/src/vendors')['useBroadcastChannel']>
2055
+ readonly useBrowserLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useBrowserLocation']>
2056
+ readonly useCached: UnwrapRef<typeof import('./core/utils/src/vendors')['useCached']>
2057
+ readonly useCeil: UnwrapRef<typeof import('./core/utils/src/math')['useCeil']>
1108
2058
  readonly useChat: UnwrapRef<typeof import('./core/notifications/src/index')['useChat']>
1109
- readonly useClamp: UnwrapRef<typeof import('@vueuse/math')['useClamp']>
1110
- readonly useClipboard: UnwrapRef<typeof import('@vueuse/core')['useClipboard']>
1111
- readonly useCloned: UnwrapRef<typeof import('@vueuse/core')['useCloned']>
1112
- readonly useColorMode: UnwrapRef<typeof import('@vueuse/core')['useColorMode']>
1113
- readonly useConfirmDialog: UnwrapRef<typeof import('@vueuse/core')['useConfirmDialog']>
1114
- readonly useCounter: UnwrapRef<typeof import('@vueuse/core')['useCounter']>
2059
+ readonly useClamp: UnwrapRef<typeof import('./core/utils/src/math')['useClamp']>
2060
+ readonly useClipboard: UnwrapRef<typeof import('./core/utils/src/vendors')['useClipboard']>
2061
+ readonly useCloned: UnwrapRef<typeof import('./core/utils/src/vendors')['useCloned']>
2062
+ readonly useColorMode: UnwrapRef<typeof import('./core/utils/src/vendors')['useColorMode']>
2063
+ readonly useConfirmDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useConfirmDialog']>
1115
2064
  readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
1116
- readonly useCssVar: UnwrapRef<typeof import('@vueuse/core')['useCssVar']>
2065
+ readonly useCssVar: UnwrapRef<typeof import('./core/utils/src/vendors')['useCssVar']>
1117
2066
  readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
1118
- readonly useCurrentElement: UnwrapRef<typeof import('@vueuse/core')['useCurrentElement']>
1119
- readonly useCycleList: UnwrapRef<typeof import('@vueuse/core')['useCycleList']>
1120
- readonly useDark: UnwrapRef<typeof import('@vueuse/core')['useDark']>
1121
- readonly useDateFormat: UnwrapRef<typeof import('@vueuse/core')['useDateFormat']>
1122
- readonly useDebounce: UnwrapRef<typeof import('@vueuse/core')['useDebounce']>
1123
- readonly useDebounceFn: UnwrapRef<typeof import('@vueuse/core')['useDebounceFn']>
1124
- readonly useDebouncedRefHistory: UnwrapRef<typeof import('@vueuse/core')['useDebouncedRefHistory']>
1125
- readonly useDeviceMotion: UnwrapRef<typeof import('@vueuse/core')['useDeviceMotion']>
1126
- readonly useDeviceOrientation: UnwrapRef<typeof import('@vueuse/core')['useDeviceOrientation']>
1127
- readonly useDevicePixelRatio: UnwrapRef<typeof import('@vueuse/core')['useDevicePixelRatio']>
1128
- readonly useDevicesList: UnwrapRef<typeof import('@vueuse/core')['useDevicesList']>
1129
- readonly useDisplayMedia: UnwrapRef<typeof import('@vueuse/core')['useDisplayMedia']>
1130
- readonly useDocumentVisibility: UnwrapRef<typeof import('@vueuse/core')['useDocumentVisibility']>
1131
- readonly useDraggable: UnwrapRef<typeof import('@vueuse/core')['useDraggable']>
1132
- readonly useDropZone: UnwrapRef<typeof import('@vueuse/core')['useDropZone']>
1133
- readonly useElementBounding: UnwrapRef<typeof import('@vueuse/core')['useElementBounding']>
1134
- readonly useElementByPoint: UnwrapRef<typeof import('@vueuse/core')['useElementByPoint']>
1135
- readonly useElementHover: UnwrapRef<typeof import('@vueuse/core')['useElementHover']>
1136
- readonly useElementSize: UnwrapRef<typeof import('@vueuse/core')['useElementSize']>
1137
- readonly useElementVisibility: UnwrapRef<typeof import('@vueuse/core')['useElementVisibility']>
2067
+ readonly useCurrentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useCurrentElement']>
2068
+ readonly useCycleList: UnwrapRef<typeof import('./core/utils/src/vendors')['useCycleList']>
2069
+ readonly useDark: UnwrapRef<typeof import('./core/utils/src/vendors')['useDark']>
2070
+ readonly useDateFormat: UnwrapRef<typeof import('./core/utils/src/vendors')['useDateFormat']>
2071
+ readonly useDebouncedRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useDebouncedRefHistory']>
2072
+ readonly useDeviceMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceMotion']>
2073
+ readonly useDeviceOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceOrientation']>
2074
+ readonly useDevicePixelRatio: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicePixelRatio']>
2075
+ readonly useDevicesList: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicesList']>
2076
+ readonly useDisplayMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useDisplayMedia']>
2077
+ readonly useDocumentVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useDocumentVisibility']>
2078
+ readonly useDraggable: UnwrapRef<typeof import('./core/utils/src/vendors')['useDraggable']>
2079
+ readonly useDropZone: UnwrapRef<typeof import('./core/utils/src/vendors')['useDropZone']>
2080
+ readonly useElementBounding: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementBounding']>
2081
+ readonly useElementByPoint: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementByPoint']>
2082
+ readonly useElementHover: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementHover']>
2083
+ readonly useElementSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementSize']>
2084
+ readonly useElementVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementVisibility']>
1138
2085
  readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
1139
- readonly useEvent: UnwrapRef<typeof import('./core/events/src/index')['useEvent']>
1140
- readonly useEventBus: UnwrapRef<typeof import('@vueuse/core')['useEventBus']>
1141
- readonly useEventListener: UnwrapRef<typeof import('@vueuse/core')['useEventListener']>
1142
- readonly useEventSource: UnwrapRef<typeof import('@vueuse/core')['useEventSource']>
1143
- readonly useEyeDropper: UnwrapRef<typeof import('@vueuse/core')['useEyeDropper']>
1144
- readonly useFavicon: UnwrapRef<typeof import('@vueuse/core')['useFavicon']>
1145
- readonly useFetch: UnwrapRef<typeof import('@vueuse/core')['useFetch']>
1146
- readonly useFileDialog: UnwrapRef<typeof import('@vueuse/core')['useFileDialog']>
1147
- readonly useFileSystemAccess: UnwrapRef<typeof import('@vueuse/core')['useFileSystemAccess']>
1148
- readonly useFloor: UnwrapRef<typeof import('@vueuse/math')['useFloor']>
1149
- readonly useFocus: UnwrapRef<typeof import('@vueuse/core')['useFocus']>
1150
- readonly useFocusWithin: UnwrapRef<typeof import('@vueuse/core')['useFocusWithin']>
1151
- readonly useFps: UnwrapRef<typeof import('@vueuse/core')['useFps']>
1152
- readonly useFullscreen: UnwrapRef<typeof import('@vueuse/core')['useFullscreen']>
1153
- readonly useGamepad: UnwrapRef<typeof import('@vueuse/core')['useGamepad']>
1154
- readonly useGeolocation: UnwrapRef<typeof import('@vueuse/core')['useGeolocation']>
1155
- readonly useHead: UnwrapRef<typeof import('@vueuse/head')['useHead']>
1156
- readonly useIdle: UnwrapRef<typeof import('@vueuse/core')['useIdle']>
1157
- readonly useImage: UnwrapRef<typeof import('@vueuse/core')['useImage']>
1158
- readonly useInfiniteScroll: UnwrapRef<typeof import('@vueuse/core')['useInfiniteScroll']>
1159
- readonly useIntersectionObserver: UnwrapRef<typeof import('@vueuse/core')['useIntersectionObserver']>
1160
- readonly useInterval: UnwrapRef<typeof import('@vueuse/core')['useInterval']>
1161
- readonly useIntervalFn: UnwrapRef<typeof import('@vueuse/core')['useIntervalFn']>
1162
- readonly useKeyModifier: UnwrapRef<typeof import('@vueuse/core')['useKeyModifier']>
1163
- readonly useLastChanged: UnwrapRef<typeof import('@vueuse/core')['useLastChanged']>
2086
+ readonly useEventBus: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventBus']>
2087
+ readonly useEventListener: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventListener']>
2088
+ readonly useEventSource: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventSource']>
2089
+ readonly useEyeDropper: UnwrapRef<typeof import('./core/utils/src/vendors')['useEyeDropper']>
2090
+ readonly useFavicon: UnwrapRef<typeof import('./core/utils/src/vendors')['useFavicon']>
2091
+ readonly useFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['useFetch']>
2092
+ readonly useFileDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileDialog']>
2093
+ readonly useFileSystemAccess: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileSystemAccess']>
2094
+ readonly useFloor: UnwrapRef<typeof import('./core/utils/src/math')['useFloor']>
2095
+ readonly useFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocus']>
2096
+ readonly useFocusWithin: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocusWithin']>
2097
+ readonly useFps: UnwrapRef<typeof import('./core/utils/src/vendors')['useFps']>
2098
+ readonly useFullscreen: UnwrapRef<typeof import('./core/utils/src/vendors')['useFullscreen']>
2099
+ readonly useGamepad: UnwrapRef<typeof import('./core/utils/src/vendors')['useGamepad']>
2100
+ readonly useGeolocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useGeolocation']>
2101
+ readonly useIdle: UnwrapRef<typeof import('./core/utils/src/vendors')['useIdle']>
2102
+ readonly useImage: UnwrapRef<typeof import('./core/utils/src/vendors')['useImage']>
2103
+ readonly useInfiniteScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useInfiniteScroll']>
2104
+ readonly useIntersectionObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useIntersectionObserver']>
2105
+ readonly useKeyModifier: UnwrapRef<typeof import('./core/utils/src/vendors')['useKeyModifier']>
1164
2106
  readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
1165
- readonly useLocalStorage: UnwrapRef<typeof import('@vueuse/core')['useLocalStorage']>
1166
- readonly useMagicKeys: UnwrapRef<typeof import('@vueuse/core')['useMagicKeys']>
1167
- readonly useManualRefHistory: UnwrapRef<typeof import('@vueuse/core')['useManualRefHistory']>
1168
- readonly useMath: UnwrapRef<typeof import('@vueuse/math')['useMath']>
1169
- readonly useMax: UnwrapRef<typeof import('@vueuse/math')['useMax']>
1170
- readonly useMediaControls: UnwrapRef<typeof import('@vueuse/core')['useMediaControls']>
1171
- readonly useMediaQuery: UnwrapRef<typeof import('@vueuse/core')['useMediaQuery']>
1172
- readonly useMemoize: UnwrapRef<typeof import('@vueuse/core')['useMemoize']>
1173
- readonly useMemory: UnwrapRef<typeof import('@vueuse/core')['useMemory']>
1174
- readonly useMin: UnwrapRef<typeof import('@vueuse/math')['useMin']>
1175
- readonly useMounted: UnwrapRef<typeof import('@vueuse/core')['useMounted']>
1176
- readonly useMouse: UnwrapRef<typeof import('@vueuse/core')['useMouse']>
1177
- readonly useMouseInElement: UnwrapRef<typeof import('@vueuse/core')['useMouseInElement']>
1178
- readonly useMousePressed: UnwrapRef<typeof import('@vueuse/core')['useMousePressed']>
1179
- readonly useMutationObserver: UnwrapRef<typeof import('@vueuse/core')['useMutationObserver']>
1180
- readonly useNavigatorLanguage: UnwrapRef<typeof import('@vueuse/core')['useNavigatorLanguage']>
1181
- readonly useNetwork: UnwrapRef<typeof import('@vueuse/core')['useNetwork']>
2107
+ readonly useLocalStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useLocalStorage']>
2108
+ readonly useMagicKeys: UnwrapRef<typeof import('./core/utils/src/vendors')['useMagicKeys']>
2109
+ readonly useManualRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useManualRefHistory']>
2110
+ readonly useMath: UnwrapRef<typeof import('./core/utils/src/math')['useMath']>
2111
+ readonly useMax: UnwrapRef<typeof import('./core/utils/src/math')['useMax']>
2112
+ readonly useMediaControls: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaControls']>
2113
+ readonly useMediaQuery: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaQuery']>
2114
+ readonly useMemoize: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemoize']>
2115
+ readonly useMemory: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemory']>
2116
+ readonly useMin: UnwrapRef<typeof import('./core/utils/src/math')['useMin']>
2117
+ readonly useMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['useMounted']>
2118
+ readonly useMouse: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouse']>
2119
+ readonly useMouseInElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouseInElement']>
2120
+ readonly useMousePressed: UnwrapRef<typeof import('./core/utils/src/vendors')['useMousePressed']>
2121
+ readonly useMutationObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useMutationObserver']>
2122
+ readonly useNavigatorLanguage: UnwrapRef<typeof import('./core/utils/src/vendors')['useNavigatorLanguage']>
2123
+ readonly useNetwork: UnwrapRef<typeof import('./core/utils/src/vendors')['useNetwork']>
1182
2124
  readonly useNotification: UnwrapRef<typeof import('./core/notifications/src/index')['useNotification']>
1183
- readonly useNow: UnwrapRef<typeof import('@vueuse/core')['useNow']>
1184
- readonly useObjectUrl: UnwrapRef<typeof import('@vueuse/core')['useObjectUrl']>
1185
- readonly useOffsetPagination: UnwrapRef<typeof import('@vueuse/core')['useOffsetPagination']>
1186
- readonly useOnline: UnwrapRef<typeof import('@vueuse/core')['useOnline']>
1187
- readonly usePageLeave: UnwrapRef<typeof import('@vueuse/core')['usePageLeave']>
1188
- readonly useParallax: UnwrapRef<typeof import('@vueuse/core')['useParallax']>
1189
- readonly usePermission: UnwrapRef<typeof import('@vueuse/core')['usePermission']>
1190
- readonly usePointer: UnwrapRef<typeof import('@vueuse/core')['usePointer']>
1191
- readonly usePointerLock: UnwrapRef<typeof import('@vueuse/core')['usePointerLock']>
1192
- readonly usePointerSwipe: UnwrapRef<typeof import('@vueuse/core')['usePointerSwipe']>
1193
- readonly usePrecision: UnwrapRef<typeof import('@vueuse/math')['usePrecision']>
1194
- readonly usePreferredColorScheme: UnwrapRef<typeof import('@vueuse/core')['usePreferredColorScheme']>
1195
- readonly usePreferredContrast: UnwrapRef<typeof import('@vueuse/core')['usePreferredContrast']>
1196
- readonly usePreferredDark: UnwrapRef<typeof import('@vueuse/core')['usePreferredDark']>
1197
- readonly usePreferredLanguages: UnwrapRef<typeof import('@vueuse/core')['usePreferredLanguages']>
1198
- readonly usePreferredReducedMotion: UnwrapRef<typeof import('@vueuse/core')['usePreferredReducedMotion']>
1199
- readonly usePrevious: UnwrapRef<typeof import('@vueuse/core')['usePrevious']>
1200
- readonly useProjection: UnwrapRef<typeof import('@vueuse/math')['useProjection']>
1201
- readonly useRafFn: UnwrapRef<typeof import('@vueuse/core')['useRafFn']>
1202
- readonly useRefHistory: UnwrapRef<typeof import('@vueuse/core')['useRefHistory']>
1203
- readonly useResizeObserver: UnwrapRef<typeof import('@vueuse/core')['useResizeObserver']>
1204
- readonly useRound: UnwrapRef<typeof import('@vueuse/math')['useRound']>
2125
+ readonly useNow: UnwrapRef<typeof import('./core/utils/src/vendors')['useNow']>
2126
+ readonly useObjectUrl: UnwrapRef<typeof import('./core/utils/src/vendors')['useObjectUrl']>
2127
+ readonly useOffsetPagination: UnwrapRef<typeof import('./core/utils/src/vendors')['useOffsetPagination']>
2128
+ readonly useOnline: UnwrapRef<typeof import('./core/utils/src/vendors')['useOnline']>
2129
+ readonly usePageLeave: UnwrapRef<typeof import('./core/utils/src/vendors')['usePageLeave']>
2130
+ readonly useParallax: UnwrapRef<typeof import('./core/utils/src/vendors')['useParallax']>
2131
+ readonly useParentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useParentElement']>
2132
+ readonly usePerformanceObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['usePerformanceObserver']>
2133
+ readonly usePermission: UnwrapRef<typeof import('./core/utils/src/vendors')['usePermission']>
2134
+ readonly usePointer: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointer']>
2135
+ readonly usePointerLock: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerLock']>
2136
+ readonly usePointerSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerSwipe']>
2137
+ readonly usePrecision: UnwrapRef<typeof import('./core/utils/src/math')['usePrecision']>
2138
+ readonly usePreferredColorScheme: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredColorScheme']>
2139
+ readonly usePreferredContrast: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredContrast']>
2140
+ readonly usePreferredDark: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredDark']>
2141
+ readonly usePreferredLanguages: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredLanguages']>
2142
+ readonly usePreferredReducedMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredReducedMotion']>
2143
+ readonly usePrevious: UnwrapRef<typeof import('./core/utils/src/vendors')['usePrevious']>
2144
+ readonly useProjection: UnwrapRef<typeof import('./core/utils/src/math')['useProjection']>
2145
+ readonly useRafFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useRafFn']>
2146
+ readonly useRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useRefHistory']>
2147
+ readonly useResizeObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useResizeObserver']>
2148
+ readonly useRound: UnwrapRef<typeof import('./core/utils/src/math')['useRound']>
1205
2149
  readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
1206
2150
  readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
1207
2151
  readonly useSMS: UnwrapRef<typeof import('./core/notifications/src/index')['useSMS']>
1208
- readonly useScreenOrientation: UnwrapRef<typeof import('@vueuse/core')['useScreenOrientation']>
1209
- readonly useScreenSafeArea: UnwrapRef<typeof import('@vueuse/core')['useScreenSafeArea']>
1210
- readonly useScriptTag: UnwrapRef<typeof import('@vueuse/core')['useScriptTag']>
1211
- readonly useScroll: UnwrapRef<typeof import('@vueuse/core')['useScroll']>
1212
- readonly useScrollLock: UnwrapRef<typeof import('@vueuse/core')['useScrollLock']>
2152
+ readonly useScreenOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenOrientation']>
2153
+ readonly useScreenSafeArea: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenSafeArea']>
2154
+ readonly useScriptTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useScriptTag']>
2155
+ readonly useScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useScroll']>
2156
+ readonly useScrollLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useScrollLock']>
1213
2157
  readonly useSearchEngine: UnwrapRef<typeof import('./core/search-engine/src/index')['useSearchEngine']>
1214
- readonly useSessionStorage: UnwrapRef<typeof import('@vueuse/core')['useSessionStorage']>
1215
- readonly useShare: UnwrapRef<typeof import('@vueuse/core')['useShare']>
2158
+ readonly useSessionStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useSessionStorage']>
2159
+ readonly useShare: UnwrapRef<typeof import('./core/utils/src/vendors')['useShare']>
1216
2160
  readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
1217
- readonly useSorted: UnwrapRef<typeof import('@vueuse/core')['useSorted']>
1218
- readonly useSpeechRecognition: UnwrapRef<typeof import('@vueuse/core')['useSpeechRecognition']>
1219
- readonly useSpeechSynthesis: UnwrapRef<typeof import('@vueuse/core')['useSpeechSynthesis']>
1220
- readonly useStepper: UnwrapRef<typeof import('@vueuse/core')['useStepper']>
1221
- readonly useStorage: UnwrapRef<typeof import('@vueuse/core')['useStorage']>
1222
- readonly useStorageAsync: UnwrapRef<typeof import('@vueuse/core')['useStorageAsync']>
1223
- readonly useStyleTag: UnwrapRef<typeof import('@vueuse/core')['useStyleTag']>
1224
- readonly useSum: UnwrapRef<typeof import('@vueuse/math')['useSum']>
1225
- readonly useSupported: UnwrapRef<typeof import('@vueuse/core')['useSupported']>
1226
- readonly useSwipe: UnwrapRef<typeof import('@vueuse/core')['useSwipe']>
1227
- readonly useTemplateRefsList: UnwrapRef<typeof import('@vueuse/core')['useTemplateRefsList']>
1228
- readonly useTextDirection: UnwrapRef<typeof import('@vueuse/core')['useTextDirection']>
1229
- readonly useTextSelection: UnwrapRef<typeof import('@vueuse/core')['useTextSelection']>
1230
- readonly useTextareaAutosize: UnwrapRef<typeof import('@vueuse/core')['useTextareaAutosize']>
1231
- readonly useThrottle: UnwrapRef<typeof import('@vueuse/core')['useThrottle']>
1232
- readonly useThrottleFn: UnwrapRef<typeof import('@vueuse/core')['useThrottleFn']>
1233
- readonly useThrottledRefHistory: UnwrapRef<typeof import('@vueuse/core')['useThrottledRefHistory']>
1234
- readonly useTimeAgo: UnwrapRef<typeof import('@vueuse/core')['useTimeAgo']>
1235
- readonly useTimeout: UnwrapRef<typeof import('@vueuse/core')['useTimeout']>
1236
- readonly useTimeoutFn: UnwrapRef<typeof import('@vueuse/core')['useTimeoutFn']>
1237
- readonly useTimeoutPoll: UnwrapRef<typeof import('@vueuse/core')['useTimeoutPoll']>
1238
- readonly useTimestamp: UnwrapRef<typeof import('@vueuse/core')['useTimestamp']>
1239
- readonly useTitle: UnwrapRef<typeof import('@vueuse/core')['useTitle']>
1240
- readonly useToFixed: UnwrapRef<typeof import('@vueuse/math')['useToFixed']>
1241
- readonly useToNumber: UnwrapRef<typeof import('@vueuse/core')['useToNumber']>
1242
- readonly useToString: UnwrapRef<typeof import('@vueuse/core')['useToString']>
1243
- readonly useToggle: UnwrapRef<typeof import('@vueuse/core')['useToggle']>
1244
- readonly useTransition: UnwrapRef<typeof import('@vueuse/core')['useTransition']>
1245
- readonly useTrunc: UnwrapRef<typeof import('@vueuse/math')['useTrunc']>
1246
- readonly useUrlSearchParams: UnwrapRef<typeof import('@vueuse/core')['useUrlSearchParams']>
1247
- readonly useUserMedia: UnwrapRef<typeof import('@vueuse/core')['useUserMedia']>
1248
- readonly useVModel: UnwrapRef<typeof import('@vueuse/core')['useVModel']>
1249
- readonly useVModels: UnwrapRef<typeof import('@vueuse/core')['useVModels']>
1250
- readonly useVibrate: UnwrapRef<typeof import('@vueuse/core')['useVibrate']>
1251
- readonly useVirtualList: UnwrapRef<typeof import('@vueuse/core')['useVirtualList']>
1252
- readonly useWakeLock: UnwrapRef<typeof import('@vueuse/core')['useWakeLock']>
1253
- readonly useWebNotification: UnwrapRef<typeof import('@vueuse/core')['useWebNotification']>
1254
- readonly useWebSocket: UnwrapRef<typeof import('@vueuse/core')['useWebSocket']>
1255
- readonly useWebWorker: UnwrapRef<typeof import('@vueuse/core')['useWebWorker']>
1256
- readonly useWebWorkerFn: UnwrapRef<typeof import('@vueuse/core')['useWebWorkerFn']>
1257
- readonly useWindowFocus: UnwrapRef<typeof import('@vueuse/core')['useWindowFocus']>
1258
- readonly useWindowScroll: UnwrapRef<typeof import('@vueuse/core')['useWindowScroll']>
1259
- readonly useWindowSize: UnwrapRef<typeof import('@vueuse/core')['useWindowSize']>
2161
+ readonly useSorted: UnwrapRef<typeof import('./core/utils/src/vendors')['useSorted']>
2162
+ readonly useSpeechRecognition: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechRecognition']>
2163
+ readonly useSpeechSynthesis: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechSynthesis']>
2164
+ readonly useStepper: UnwrapRef<typeof import('./core/utils/src/vendors')['useStepper']>
2165
+ readonly useStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorage']>
2166
+ readonly useStorageAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorageAsync']>
2167
+ readonly useStyleTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useStyleTag']>
2168
+ readonly useSum: UnwrapRef<typeof import('./core/utils/src/math')['useSum']>
2169
+ readonly useSupported: UnwrapRef<typeof import('./core/utils/src/vendors')['useSupported']>
2170
+ readonly useSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['useSwipe']>
2171
+ readonly useTemplateRefsList: UnwrapRef<typeof import('./core/utils/src/vendors')['useTemplateRefsList']>
2172
+ readonly useTextDirection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextDirection']>
2173
+ readonly useTextSelection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextSelection']>
2174
+ readonly useTextareaAutosize: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextareaAutosize']>
2175
+ readonly useThrottledRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useThrottledRefHistory']>
2176
+ readonly useTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeAgo']>
2177
+ readonly useTimeoutPoll: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeoutPoll']>
2178
+ readonly useTimestamp: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimestamp']>
2179
+ readonly useTitle: UnwrapRef<typeof import('./core/utils/src/vendors')['useTitle']>
2180
+ readonly useTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['useTransition']>
2181
+ readonly useTrunc: UnwrapRef<typeof import('./core/utils/src/math')['useTrunc']>
2182
+ readonly useUrlSearchParams: UnwrapRef<typeof import('./core/utils/src/vendors')['useUrlSearchParams']>
2183
+ readonly useUserMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useUserMedia']>
2184
+ readonly useVModel: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModel']>
2185
+ readonly useVModels: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModels']>
2186
+ readonly useVibrate: UnwrapRef<typeof import('./core/utils/src/vendors')['useVibrate']>
2187
+ readonly useVirtualList: UnwrapRef<typeof import('./core/utils/src/vendors')['useVirtualList']>
2188
+ readonly useWakeLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useWakeLock']>
2189
+ readonly useWebNotification: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebNotification']>
2190
+ readonly useWebSocket: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebSocket']>
2191
+ readonly useWebWorker: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorker']>
2192
+ readonly useWebWorkerFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorkerFn']>
2193
+ readonly useWindowFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowFocus']>
2194
+ readonly useWindowScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowScroll']>
2195
+ readonly useWindowSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowSize']>
2196
+ readonly userConfigPath: UnwrapRef<typeof import('./core/path/src/index')['userConfigPath']>
1260
2197
  readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
1261
- readonly validate: UnwrapRef<typeof import('./core/validation/src/index')['validate']>
1262
- readonly validateUsername: UnwrapRef<typeof import('./core/strings/src/validation')['validateUsername']>
2198
+ readonly validate: UnwrapRef<typeof import('./core/validation/src/validate')['validate']>
2199
+ readonly validateUsername: UnwrapRef<typeof import('./core/validation/src/is')['validateUsername']>
1263
2200
  readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
1264
2201
  readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
1265
2202
  readonly vi: UnwrapRef<typeof import('vitest')['vi']>
1266
2203
  readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
1267
2204
  readonly watch: UnwrapRef<typeof import('vue')['watch']>
1268
- readonly watchArray: UnwrapRef<typeof import('@vueuse/core')['watchArray']>
1269
- readonly watchAtMost: UnwrapRef<typeof import('@vueuse/core')['watchAtMost']>
1270
- readonly watchDebounced: UnwrapRef<typeof import('@vueuse/core')['watchDebounced']>
2205
+ readonly watchArray: UnwrapRef<typeof import('./core/utils/src/vendors')['watchArray']>
2206
+ readonly watchAtMost: UnwrapRef<typeof import('./core/utils/src/vendors')['watchAtMost']>
2207
+ readonly watchDebounced: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDebounced']>
2208
+ readonly watchDeep: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDeep']>
1271
2209
  readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
1272
- readonly watchIgnorable: UnwrapRef<typeof import('@vueuse/core')['watchIgnorable']>
1273
- readonly watchOnce: UnwrapRef<typeof import('@vueuse/core')['watchOnce']>
1274
- readonly watchPausable: UnwrapRef<typeof import('@vueuse/core')['watchPausable']>
2210
+ readonly watchIgnorable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchIgnorable']>
2211
+ readonly watchImmediate: UnwrapRef<typeof import('./core/utils/src/vendors')['watchImmediate']>
2212
+ readonly watchOnce: UnwrapRef<typeof import('./core/utils/src/vendors')['watchOnce']>
2213
+ readonly watchPausable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchPausable']>
1275
2214
  readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
1276
2215
  readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
1277
- readonly watchThrottled: UnwrapRef<typeof import('@vueuse/core')['watchThrottled']>
1278
- readonly watchTriggerable: UnwrapRef<typeof import('@vueuse/core')['watchTriggerable']>
1279
- readonly watchWithFilter: UnwrapRef<typeof import('@vueuse/core')['watchWithFilter']>
1280
- readonly whenever: UnwrapRef<typeof import('@vueuse/core')['whenever']>
2216
+ readonly watchThrottled: UnwrapRef<typeof import('./core/utils/src/vendors')['watchThrottled']>
2217
+ readonly watchTriggerable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchTriggerable']>
2218
+ readonly watchWithFilter: UnwrapRef<typeof import('./core/utils/src/vendors')['watchWithFilter']>
2219
+ readonly whenever: UnwrapRef<typeof import('./core/utils/src/vendors')['whenever']>
1281
2220
  readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
1282
2221
  readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
1283
2222
  readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
1284
- readonly z: UnwrapRef<typeof import('./core/validation/src/index')['z']>
2223
+ readonly z: UnwrapRef<typeof import('./core/validation/src/validate')['z']>
1285
2224
  }
1286
2225
  }