stacks 0.52.10 → 0.56.3

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