stacks 0.53.1 → 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 (461) hide show
  1. package/.gitignore +4 -2
  2. package/README.md +71 -74
  3. package/api/package.json +3 -2
  4. package/art/logo-dark.svg +11 -0
  5. package/art/logo.svg +11 -0
  6. package/auto-imports.d.ts +1182 -841
  7. package/components.d.ts +7 -9
  8. package/core/actions/build.config.ts +181 -9
  9. package/core/actions/package.json +6 -8
  10. package/core/actions/src/build/component-libs.ts +2 -12
  11. package/core/actions/src/dev/index.ts +6 -5
  12. package/core/actions/src/generate/index.ts +2 -2
  13. package/core/actions/src/generate/settings.ts +1 -1
  14. package/core/actions/src/helpers/lib-entries.ts +43 -35
  15. package/core/actions/src/helpers/utils.ts +7 -9
  16. package/core/actions/src/lint/index.ts +14 -2
  17. package/core/actions/src/make.ts +7 -4
  18. package/core/actions/src/migrate.ts +2 -2
  19. package/core/actions/src/prepublish.ts +2 -2
  20. package/core/actions/src/release.ts +1 -1
  21. package/core/actions/src/seed.ts +1 -1
  22. package/core/actions/src/upgrade/framework.ts +1 -1
  23. package/core/actions/src/upgrade.ts +3 -3
  24. package/core/ai/build.config.ts +5 -7
  25. package/core/ai/package.json +5 -9
  26. package/core/alias/build.config.ts +5 -7
  27. package/core/alias/package.json +3 -6
  28. package/core/alias/src/index.ts +6 -7
  29. package/core/analytics/build.config.ts +5 -7
  30. package/core/analytics/package.json +6 -6
  31. package/core/arrays/build.config.ts +4 -7
  32. package/core/arrays/package.json +8 -4
  33. package/core/arrays/src/contains.ts +23 -0
  34. package/core/arrays/src/helpers.ts +206 -0
  35. package/core/arrays/src/index.ts +4 -226
  36. package/core/arrays/src/macro.ts +135 -0
  37. package/core/arrays/src/math.ts +19 -0
  38. package/core/auth/build.config.ts +4 -7
  39. package/core/auth/package.json +3 -3
  40. package/core/buddy/README.md +73 -76
  41. package/core/buddy/build.config.ts +1 -2
  42. package/core/buddy/package.json +4 -4
  43. package/core/buddy/src/cli.ts +10 -18
  44. package/core/buddy/src/commands/add.ts +2 -2
  45. package/core/buddy/src/commands/build.ts +23 -16
  46. package/core/buddy/src/commands/create.ts +2 -2
  47. package/core/buddy/src/commands/dev.ts +31 -30
  48. package/core/buddy/src/commands/example.ts +8 -14
  49. package/core/buddy/src/commands/generate.ts +16 -14
  50. package/core/buddy/src/commands/key.ts +1 -1
  51. package/core/buddy/src/commands/lint.ts +4 -4
  52. package/core/buddy/src/commands/make.ts +20 -15
  53. package/core/buddy/src/commands/setting.ts +2 -2
  54. package/core/buddy/src/commands/upgrade.ts +18 -22
  55. package/core/buddy/src/commands/version.ts +1 -1
  56. package/core/build/build.config.ts +22 -7
  57. package/core/build/package.json +11 -10
  58. package/core/build/src/desktop.ts +2 -2
  59. package/core/build/src/example-vue.ts +5 -4
  60. package/core/build/src/example-wc.ts +5 -4
  61. package/core/build/src/functions.ts +9 -11
  62. package/core/build/src/index.ts +7 -7
  63. package/core/build/src/stacks.ts +31 -50
  64. package/core/build/src/{pages.ts → views.ts} +13 -14
  65. package/core/build/src/vue-components.ts +73 -12
  66. package/core/build/src/web-components.ts +12 -11
  67. package/core/build/web-types.ts +3 -3
  68. package/core/cache/build.config.ts +7 -7
  69. package/core/cache/package.json +17 -17
  70. package/core/cache/tests/DynamoDB.test.ts +19 -33
  71. package/core/chat/build.config.ts +5 -7
  72. package/core/chat/package.json +8 -8
  73. package/core/cli/build.config.ts +3 -2
  74. package/core/cli/package.json +3 -3
  75. package/core/cli/src/console.ts +75 -2
  76. package/core/cli/src/helpers.ts +1 -1
  77. package/core/cli/src/parse.ts +2 -2
  78. package/core/cli/src/run.ts +5 -6
  79. package/core/cloud/build.config.ts +4 -7
  80. package/core/cloud/package.json +17 -3
  81. package/core/cloud/src/aws/index.ts +9 -0
  82. package/core/cloud/src/aws/logger.ts +8 -0
  83. package/core/cloud/src/aws/metrics.ts +8 -0
  84. package/core/cloud/src/aws/stack.ts +12 -0
  85. package/core/cloud/src/aws/tracer.ts +3 -0
  86. package/core/cloud/src/index.ts +1 -1
  87. package/core/cloud/src/runtime/nodejs/bootstrap.ts +16 -0
  88. package/core/cloud/src/runtime/nodejs/build.sh +1 -0
  89. package/core/collections/build.config.ts +3 -7
  90. package/core/collections/package.json +3 -3
  91. package/core/config/build.config.ts +33 -33
  92. package/core/config/package.json +4 -4
  93. package/core/config/src/defaults.ts +0 -3
  94. package/core/config/src/stacks.ts +10 -11
  95. package/core/database/build.config.ts +1 -2
  96. package/core/database/package.json +3 -3
  97. package/core/database/src/factory/index.ts +1 -1
  98. package/core/database/src/migrations/index.ts +1 -1
  99. package/core/datetime/build.config.ts +1 -2
  100. package/core/datetime/package.json +3 -3
  101. package/core/datetime/src/index.ts +2 -1
  102. package/core/desktop/build.config.ts +2 -1
  103. package/core/desktop/package.json +6 -6
  104. package/core/development/build.config.ts +15 -8
  105. package/core/development/package.json +11 -5
  106. package/core/development/src/index.ts +2 -0
  107. package/core/{domains → dns}/README.md +2 -2
  108. package/core/dns/build.config.ts +22 -0
  109. package/core/{domains → dns}/package.json +13 -9
  110. package/core/dns/src/index.ts +18 -0
  111. package/core/docs/build.config.ts +1 -2
  112. package/core/docs/package.json +4 -4
  113. package/core/email/build.config.ts +1 -2
  114. package/core/email/package.json +15 -15
  115. package/core/email/src/drivers/emailjs.ts +1 -1
  116. package/core/email/src/drivers/mailgun.ts +1 -1
  117. package/core/email/src/drivers/mailjet.ts +2 -2
  118. package/core/email/src/drivers/mandrill.ts +1 -1
  119. package/core/email/src/drivers/netcore.ts +1 -1
  120. package/core/email/src/drivers/nodemailer.ts +1 -1
  121. package/core/email/src/drivers/postmark.ts +1 -1
  122. package/core/email/src/drivers/sendgrid.ts +1 -1
  123. package/core/error-handling/build.config.ts +7 -2
  124. package/core/error-handling/package.json +6 -4
  125. package/core/error-handling/src/index.ts +45 -0
  126. package/core/events/README.md +1 -1
  127. package/core/events/build.config.ts +1 -2
  128. package/core/events/package.json +3 -3
  129. package/core/events/src/index.ts +8 -1
  130. package/core/faker/build.config.ts +3 -1
  131. package/core/faker/package.json +4 -4
  132. package/core/git/build.config.ts +3 -1
  133. package/core/git/package.json +4 -4
  134. package/core/health/build.config.ts +3 -1
  135. package/core/health/package.json +3 -3
  136. package/core/lint/build.config.ts +3 -1
  137. package/core/lint/package.json +6 -6
  138. package/core/logging/build.config.ts +5 -3
  139. package/core/logging/package.json +6 -6
  140. package/core/modules/build.config.ts +10 -7
  141. package/core/modules/package.json +3 -3
  142. package/core/notifications/README.md +1 -1
  143. package/core/notifications/build.config.ts +2 -1
  144. package/core/notifications/package.json +25 -25
  145. package/core/notifications/src/tailwind.config.ts +1 -1
  146. package/core/notifications/tests/email/Mailgun.test.ts +4 -4
  147. package/core/notifications/tests/email/Sendgrid.test.ts +2 -2
  148. package/core/objects/build.config.ts +15 -7
  149. package/core/objects/package.json +5 -4
  150. package/core/orm/build.config.ts +1 -2
  151. package/core/orm/package.json +3 -3
  152. package/core/pages/build.config.ts +4 -7
  153. package/core/pages/package.json +3 -3
  154. package/core/pages/src/index.ts +2 -2
  155. package/core/path/build.config.ts +1 -2
  156. package/core/path/package.json +4 -5
  157. package/core/path/src/index.ts +84 -65
  158. package/core/payments/build.config.ts +4 -7
  159. package/core/payments/package.json +5 -5
  160. package/core/push/build.config.ts +4 -7
  161. package/core/push/package.json +5 -5
  162. package/core/query-builder/build.config.ts +4 -7
  163. package/core/query-builder/package.json +7 -7
  164. package/core/queue/build.config.ts +4 -7
  165. package/core/queue/package.json +3 -3
  166. package/core/realtime/build.config.ts +4 -7
  167. package/core/realtime/package.json +3 -3
  168. package/core/realtime/src/index.ts +3 -1
  169. package/core/repl/README.md +53 -0
  170. package/core/repl/build.config.ts +12 -0
  171. package/core/repl/package.json +56 -0
  172. package/core/repl/src/index.ts +1 -0
  173. package/core/repl/tests/example.test.ts +7 -0
  174. package/core/router/build.config.ts +13 -7
  175. package/core/router/package.json +4 -4
  176. package/core/router/src/index.ts +2 -0
  177. package/core/scheduler/build.config.ts +4 -7
  178. package/core/scheduler/package.json +4 -4
  179. package/core/search-engine/build.config.ts +17 -7
  180. package/core/search-engine/package.json +4 -4
  181. package/core/search-engine/src/index.ts +2 -2
  182. package/core/security/build.config.ts +17 -7
  183. package/core/security/package.json +4 -3
  184. package/core/security/src/crypt.ts +11 -2
  185. package/core/server/build.config.ts +3 -7
  186. package/core/server/package.json +5 -5
  187. package/core/signals/README.md +2 -2
  188. package/core/signals/build.config.ts +4 -7
  189. package/core/signals/package.json +4 -4
  190. package/core/signals/src/index.ts +1 -1
  191. package/core/slug/build.config.ts +4 -7
  192. package/core/slug/package.json +3 -3
  193. package/core/slug/src/index.ts +2 -1
  194. package/core/sms/build.config.ts +3 -1
  195. package/core/sms/package.json +13 -13
  196. package/core/storage/build.config.ts +3 -7
  197. package/core/storage/package.json +5 -5
  198. package/core/storage/src/index.ts +2 -22
  199. package/core/strings/build.config.ts +1 -2
  200. package/core/strings/package.json +9 -3
  201. package/core/strings/src/case.ts +12 -0
  202. package/core/strings/src/index.ts +2 -1
  203. package/core/strings/src/is.ts +170 -0
  204. package/core/strings/src/macro.ts +139 -0
  205. package/core/strings/src/utils.ts +10 -12
  206. package/core/testing/build.config.ts +3 -1
  207. package/core/testing/package.json +8 -8
  208. package/core/tinker/build.config.ts +12 -0
  209. package/core/tinker/package.json +15 -3
  210. package/core/tinker/src/index.ts +1 -0
  211. package/core/types/build.config.ts +17 -8
  212. package/core/types/package.json +25 -19
  213. package/core/types/src/app.ts +4 -4
  214. package/core/types/src/cli.ts +36 -34
  215. package/core/types/src/cron-jobs.ts +25 -4
  216. package/core/types/src/database.ts +12 -3
  217. package/core/types/src/errors.ts +19 -1
  218. package/core/types/src/events.ts +13 -5
  219. package/core/types/src/git.ts +1 -1
  220. package/core/types/src/index.ts +2 -1
  221. package/core/types/src/library.ts +0 -7
  222. package/core/types/src/model.ts +21 -7
  223. package/core/types/src/money.ts +3 -0
  224. package/core/types/src/notifications.ts +9 -7
  225. package/core/types/src/queue.ts +34 -0
  226. package/core/types/src/search-engine.ts +3 -3
  227. package/core/types/src/stacks.ts +1 -12
  228. package/core/ui/build.config.ts +5 -7
  229. package/core/ui/package.json +7 -7
  230. package/core/utils/build.config.ts +32 -7
  231. package/core/utils/package.json +16 -16
  232. package/core/utils/src/config.ts +88 -49
  233. package/core/utils/src/currency.ts +3 -0
  234. package/core/utils/src/delete.ts +1 -3
  235. package/core/utils/src/helpers.ts +11 -5
  236. package/core/validation/build.config.ts +18 -8
  237. package/core/validation/package.json +8 -6
  238. package/core/validation/src/index.ts +2 -0
  239. package/core/validation/src/is.ts +27 -174
  240. package/core/validation/src/rules.ts +126 -0
  241. package/core/validation/src/types/env.ts +147 -0
  242. package/core/validation/src/types/index.ts +2 -0
  243. package/core/validation/src/types/money.ts +17 -0
  244. package/core/validation/src/validate.ts +14 -25
  245. package/core/vite-plugin/README.md +59 -0
  246. package/core/vite-plugin/build.config.ts +21 -0
  247. package/core/vite-plugin/package.json +51 -0
  248. package/core/vite-plugin/src/index.ts +23 -0
  249. package/core/vite-plugin/tests/example.test.ts +7 -0
  250. package/dictionary.txt +228 -0
  251. package/docs/package.json +3 -2
  252. package/env.d.ts +7 -0
  253. package/ide/jetbrains/.fleet/run.json +5 -0
  254. package/ide/jetbrains/.fleet/settings.json +4 -0
  255. package/ide/jetbrains/.idea/.gitignore +5 -0
  256. package/ide/jetbrains/.idea/inspectionProfiles/Project_Default.xml +6 -0
  257. package/ide/jetbrains/.idea/jsLibraryMappings.xml +6 -0
  258. package/ide/jetbrains/.idea/jsLinters/eslint.xml +7 -0
  259. package/ide/jetbrains/.idea/modules.xml +8 -0
  260. package/ide/jetbrains/.idea/stacks.iml +69 -0
  261. package/ide/jetbrains/.idea/vcs.xml +6 -0
  262. package/ide/jetbrains/.idea/webResources.xml +14 -0
  263. package/ide/jetbrains/.idea/workspace.xml +225 -0
  264. package/ide/jetbrains/IntelliJ IDEA Global Settings +0 -0
  265. package/ide/jetbrains/installed.txt +4 -0
  266. package/ide/jetbrains/options/github-copilot.xml +5 -0
  267. package/ide/jetbrains/options/nodejs.xml +7 -0
  268. package/ide/jetbrains/options/templates.xml +124 -0
  269. package/ide/jetbrains/templates/JavaScript.xml +6 -0
  270. package/ide/jetbrains/templates/Stacks.xml +8 -0
  271. package/ide/vscode/.vscode/README.md +23 -0
  272. package/ide/vscode/.vscode/extensions.json +5 -0
  273. package/ide/vscode/.vscode/settings.json +111 -0
  274. package/ide/vscode/.vscode/stacks.code-snippets +182 -0
  275. package/ide/vscode/README.md +42 -0
  276. package/ide/vscode/logo.png +0 -0
  277. package/ide/vscode/package.json +64 -0
  278. package/{components → libs/components}/vue/main.ts +1 -1
  279. package/{components → libs/components}/vue/package.json +1 -1
  280. package/{components → libs/components}/web/package.json +1 -1
  281. package/libs/examples/vue/App.vue +12 -0
  282. package/libs/examples/vue/favicon.png +0 -0
  283. package/libs/examples/vue/index.html +20 -0
  284. package/libs/examples/web/favicon.png +0 -0
  285. package/libs/examples/web/index.html +13 -0
  286. package/libs/functions/package.json +41 -0
  287. package/package.json +104 -98
  288. package/reset.d.ts +1 -0
  289. package/scripts/ensure.sh +33 -0
  290. package/scripts/publish.sh +18 -0
  291. package/scripts/setup.sh +540 -0
  292. package/stacks/dashboard/README.md +74 -0
  293. package/{core/domains → stacks/dashboard}/build.config.ts +1 -1
  294. package/stacks/dashboard/package.json +46 -0
  295. package/stacks/dashboard/src/index.ts +0 -0
  296. package/stacks/dashboard/tests/example.test.ts +7 -0
  297. package/stacks/tables/README.md +109 -0
  298. package/stacks/tables/build.config.ts +16 -0
  299. package/stacks/tables/examples/vue/App.vue +12 -0
  300. package/stacks/tables/examples/vue/favicon.png +0 -0
  301. package/stacks/tables/examples/vue/index.html +20 -0
  302. package/stacks/tables/examples/web/favicon.png +0 -0
  303. package/stacks/tables/examples/web/index.html +13 -0
  304. package/stacks/tables/index.html +13 -0
  305. package/stacks/tables/package.json +57 -0
  306. package/stacks/tables/src/App.vue +23 -0
  307. package/stacks/tables/src/components/Demo.vue +84 -0
  308. package/stacks/tables/src/components/README.md +110 -0
  309. package/stacks/tables/src/components/Table.vue +342 -0
  310. package/stacks/tables/src/components/TableBody.vue +32 -0
  311. package/stacks/tables/src/components/TableCellActionItems.vue +9 -0
  312. package/stacks/tables/src/components/TableFilters.vue +704 -0
  313. package/stacks/tables/src/components/TableHead.vue +60 -0
  314. package/stacks/tables/src/components/TablePagination.vue +131 -0
  315. package/stacks/tables/src/components/TableRow.vue +73 -0
  316. package/stacks/tables/src/components/TableSearch.vue +39 -0
  317. package/stacks/tables/src/components/Tooltip.vue +10 -0
  318. package/stacks/tables/src/config/tables.ts +1 -0
  319. package/stacks/tables/src/docs/index.md +0 -0
  320. package/stacks/tables/src/functions/README.md +8 -0
  321. package/stacks/tables/src/functions/dark.ts +3 -0
  322. package/stacks/tables/src/functions/index.ts +2 -0
  323. package/stacks/tables/src/functions/table.ts +207 -0
  324. package/stacks/tables/src/main.ts +4 -0
  325. package/stacks/tables/tests/example.test.ts +7 -0
  326. package/stacks/tables/vite.config.ts +26 -0
  327. package/stacks/tinker/package.json +48 -0
  328. package/stacks/tinker/src/index.ts +1 -0
  329. package/stacks/x-ray/README.md +55 -0
  330. package/stacks/x-ray/build.config.ts +15 -0
  331. package/stacks/x-ray/index.html +13 -0
  332. package/stacks/x-ray/package.json +55 -0
  333. package/stacks/x-ray/routes/index.ts +19 -0
  334. package/stacks/x-ray/src/client.ts +14 -0
  335. package/stacks/x-ray/src/desktop/api/nitro.config.ts +19 -0
  336. package/stacks/x-ray/src/desktop/api/routes/api/logs.ts +7 -0
  337. package/stacks/x-ray/src/desktop/api/routes/api/store-logs.ts +22 -0
  338. package/stacks/x-ray/src/desktop/api/src/types.ts +7 -0
  339. package/stacks/x-ray/src/desktop/api/storage/index.ts +7 -0
  340. package/stacks/x-ray/src/desktop/app.vue +377 -0
  341. package/stacks/x-ray/src/desktop/functions/http.ts +26 -0
  342. package/stacks/x-ray/src/desktop/functions/types.ts +7 -0
  343. package/stacks/x-ray/src/desktop/main.ts +14 -0
  344. package/stacks/x-ray/src/desktop/modules/counter/mod.vue +44 -0
  345. package/stacks/x-ray/src/desktop/modules/fetcher/mod.vue +63 -0
  346. package/stacks/x-ray/src/desktop/plugins/unified/unified-app.ts +5 -0
  347. package/stacks/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
  348. package/stacks/x-ray/src/desktop/services/http.ts +45 -0
  349. package/stacks/x-ray/src/desktop/styles/app.scss +0 -0
  350. package/stacks/x-ray/src/http.ts +26 -0
  351. package/stacks/x-ray/src/index.ts +42 -0
  352. package/stacks/x-ray/src/ray.config.ts +27 -0
  353. package/stacks/x-ray/src/types.ts +8 -0
  354. package/stacks/x-ray/tests/example.test.ts +7 -0
  355. package/stacks.d.ts +22 -0
  356. package/tsconfig.json +21 -12
  357. package/vcs/github/CODE_OF_CONDUCT.md +83 -0
  358. package/vcs/github/CONTRIBUTING.md +190 -0
  359. package/vcs/github/EXPLANATIONS.md +41 -0
  360. package/vcs/github/FUNDING.yml +1 -0
  361. package/vcs/github/ISSUE_TEMPLATE/bug_report.yml +62 -0
  362. package/vcs/github/ISSUE_TEMPLATE/config.yml +10 -0
  363. package/vcs/github/ISSUE_TEMPLATE/feature_request.yml +44 -0
  364. package/vcs/github/SECURITY.md +70 -0
  365. package/vcs/github/renovate.json +5 -0
  366. package/vcs/github/stale.yml +14 -0
  367. package/vcs/github/workflows/README.md +16 -0
  368. package/vcs/github/workflows/ci.yml +173 -0
  369. package/vcs/github/workflows/export-size.yml +32 -0
  370. package/vcs/github/workflows/release.yml +57 -0
  371. package/{pages → views}/desktop/src/Cargo.lock +363 -46
  372. package/{pages → views}/desktop/src/Cargo.toml +2 -2
  373. package/{pages → views}/web/main.ts +2 -2
  374. package/api/serverless.yml +0 -11
  375. package/core/actions/node_modules/.bin/markdown-it +0 -17
  376. package/core/actions/node_modules/.bin/unbuild +0 -17
  377. package/core/build/entries/README.md +0 -7
  378. package/core/build/node_modules/.bin/unbuild +0 -17
  379. package/core/build/node_modules/.bin/vite +0 -17
  380. package/core/build/node_modules/.bin/vite-ssg +0 -17
  381. package/core/build/node_modules/.bin/vue-docgen-web-types +0 -17
  382. package/core/desktop/node_modules/.bin/tauri +0 -17
  383. package/core/development/node_modules/.bin/tsc +0 -17
  384. package/core/development/node_modules/.bin/tsserver +0 -17
  385. package/core/development/node_modules/.bin/tsx +0 -17
  386. package/core/development/node_modules/.bin/unbuild +0 -17
  387. package/core/docs/node_modules/.bin/vitepress +0 -17
  388. package/core/email/node_modules/.bin/maizzle +0 -17
  389. package/core/git/node_modules/.bin/bumpp +0 -17
  390. package/core/git/node_modules/.bin/changelogen +0 -17
  391. package/core/git/node_modules/.bin/commitizen +0 -17
  392. package/core/git/node_modules/.bin/cz +0 -17
  393. package/core/git/node_modules/.bin/giget +0 -17
  394. package/core/git/node_modules/.bin/git-cz +0 -17
  395. package/core/git/node_modules/.bin/simple-git-hooks +0 -17
  396. package/core/lint/node_modules/.bin/eslint +0 -17
  397. package/core/lint/node_modules/.bin/lint-staged +0 -17
  398. package/core/lint/node_modules/.bin/publint +0 -17
  399. package/core/logging/node_modules/.bin/tsc +0 -17
  400. package/core/logging/node_modules/.bin/tsserver +0 -17
  401. package/core/logging/node_modules/.bin/tsx +0 -17
  402. package/core/logging/node_modules/.bin/unbuild +0 -17
  403. package/core/notifications/node_modules/.bin/maizzle +0 -17
  404. package/core/server/node_modules/.bin/nitro +0 -17
  405. package/core/server/node_modules/.bin/nitropack +0 -17
  406. package/core/server/node_modules/.bin/vite +0 -17
  407. package/core/testing/node_modules/.bin/playwright +0 -17
  408. package/core/testing/node_modules/.bin/tsc +0 -17
  409. package/core/testing/node_modules/.bin/tsserver +0 -17
  410. package/core/testing/node_modules/.bin/unbuild +0 -17
  411. package/core/testing/node_modules/.bin/vitest +0 -17
  412. package/core/tinker/node_modules/.bin/tsx +0 -17
  413. package/core/types/node_modules/.bin/markdown-it +0 -17
  414. package/core/types/node_modules/.bin/vite +0 -17
  415. package/core/types/node_modules/.bin/vite-ssg +0 -17
  416. package/core/types/node_modules/.bin/vitepress +0 -17
  417. package/core/types/src/markdown.ts +0 -198
  418. package/core/ui/node_modules/.bin/vue-tsc +0 -17
  419. package/core/utils/node_modules/.bin/rimraf +0 -17
  420. package/core/utils/node_modules/.bin/semver +0 -17
  421. package/docs/node_modules/.bin/rimraf +0 -17
  422. package/docs/node_modules/.bin/vitepress +0 -17
  423. /package/core/{domains → dns}/tests/example.test.ts +0 -0
  424. /package/{LICENSE.md → ide/vscode/LICENSE.md} +0 -0
  425. /package/{components → libs/components}/vue/index.html +0 -0
  426. /package/{core/domains/src → stacks/tables/src/cli}/index.ts +0 -0
  427. /package/{pages → views}/desktop/.gitignore +0 -0
  428. /package/{pages → views}/desktop/README.md +0 -0
  429. /package/{pages → views}/desktop/index.html +0 -0
  430. /package/{pages → views}/desktop/package.json +0 -0
  431. /package/{pages → views}/desktop/public/favicon.svg +0 -0
  432. /package/{pages → views}/desktop/src/.gitignore +0 -0
  433. /package/{pages → views}/desktop/src/build.rs +0 -0
  434. /package/{pages → views}/desktop/src/icons/128x128.png +0 -0
  435. /package/{pages → views}/desktop/src/icons/128x128@2x.png +0 -0
  436. /package/{pages → views}/desktop/src/icons/32x32.png +0 -0
  437. /package/{pages → views}/desktop/src/icons/Square107x107Logo.png +0 -0
  438. /package/{pages → views}/desktop/src/icons/Square142x142Logo.png +0 -0
  439. /package/{pages → views}/desktop/src/icons/Square150x150Logo.png +0 -0
  440. /package/{pages → views}/desktop/src/icons/Square284x284Logo.png +0 -0
  441. /package/{pages → views}/desktop/src/icons/Square30x30Logo.png +0 -0
  442. /package/{pages → views}/desktop/src/icons/Square310x310Logo.png +0 -0
  443. /package/{pages → views}/desktop/src/icons/Square44x44Logo.png +0 -0
  444. /package/{pages → views}/desktop/src/icons/Square71x71Logo.png +0 -0
  445. /package/{pages → views}/desktop/src/icons/Square89x89Logo.png +0 -0
  446. /package/{pages → views}/desktop/src/icons/StoreLogo.png +0 -0
  447. /package/{pages → views}/desktop/src/icons/icon.icns +0 -0
  448. /package/{pages → views}/desktop/src/icons/icon.ico +0 -0
  449. /package/{pages → views}/desktop/src/icons/icon.png +0 -0
  450. /package/{pages → views}/desktop/src/src/main.rs +0 -0
  451. /package/{pages → views}/desktop/src/tauri.conf.json +0 -0
  452. /package/{pages → views}/web/App.vue +0 -0
  453. /package/{pages → views}/web/index.html +0 -0
  454. /package/{pages → views}/web/public/_headers +0 -0
  455. /package/{pages → views}/web/public/favicon-dark.svg +0 -0
  456. /package/{pages → views}/web/public/favicon.svg +0 -0
  457. /package/{pages → views}/web/public/pwa-192x192.png +0 -0
  458. /package/{pages → views}/web/public/pwa-512x512.png +0 -0
  459. /package/{pages → views}/web/public/safari-pinned-tab.svg +0 -0
  460. /package/{pages → views}/web/styles/main.css +0 -0
  461. /package/{pages → views}/web/styles/markdown.css +0 -0
package/auto-imports.d.ts CHANGED
@@ -4,772 +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 notNullish: UnwrapRef<typeof import('./core/utils/src/guards')['notNullish']>
397
- readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
398
- readonly notification: UnwrapRef<typeof import('../config/notification')['default']>
399
- readonly notificationsPath: UnwrapRef<typeof import('./core/path/src/index')['notificationsPath']>
400
- readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
401
- readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
402
- readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
403
- readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
404
- readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
405
- readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
406
- readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
407
- readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
408
- readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
409
- readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
410
- readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
411
- readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
412
- readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
413
- readonly onClickOutside: UnwrapRef<typeof import('./core/utils/src/vendors')['onClickOutside']>
414
- readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
415
- readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
416
- readonly onKeyDown: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyDown']>
417
- readonly onKeyPressed: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyPressed']>
418
- readonly onKeyStroke: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyStroke']>
419
- readonly onKeyUp: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyUp']>
420
- readonly onLongPress: UnwrapRef<typeof import('./core/utils/src/vendors')['onLongPress']>
421
- readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
422
- readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
423
- readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
424
- readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
425
- readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
426
- readonly onStartTyping: UnwrapRef<typeof import('./core/utils/src/vendors')['onStartTyping']>
427
- readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
428
- readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
429
- readonly onboardingPath: UnwrapRef<typeof import('./core/path/src/index')['onboardingPath']>
430
- readonly or: UnwrapRef<typeof import('./core/utils/src/math')['or']>
431
- readonly ormPath: UnwrapRef<typeof import('./core/path/src/index')['ormPath']>
432
- readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
433
- readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
434
- readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
435
- readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
436
- readonly parse: UnwrapRef<typeof import('./core/path/src/index')['parse']>
437
- readonly parseYaml: UnwrapRef<typeof import('./core/utils/src/helpers')['parseYaml']>
438
- readonly partition: UnwrapRef<typeof import('./core/arrays/src/index')['partition']>
439
- readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
440
- readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
441
- readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
442
- readonly pathPath: UnwrapRef<typeof import('./core/path/src/index')['pathPath']>
443
- readonly payment: UnwrapRef<typeof import('../config/payment')['default']>
444
- readonly paymentsPath: UnwrapRef<typeof import('./core/path/src/index')['paymentsPath']>
445
- readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
446
- readonly plivo: UnwrapRef<typeof import('./core/sms/src/index')['plivo']>
447
- readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
448
- readonly preferredDark: UnwrapRef<typeof import('../functions/dark')['preferredDark']>
449
- readonly presetForms: UnwrapRef<typeof import('@stacksjs/ui')['presetForms']>
450
- readonly projectPath: UnwrapRef<typeof import('./core/path/src/index')['projectPath']>
451
- readonly provide: UnwrapRef<typeof import('vue')['provide']>
452
- readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
453
- readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
454
- readonly queryBuilderPath: UnwrapRef<typeof import('./core/path/src/index')['queryBuilderPath']>
455
- readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
456
- readonly rand: UnwrapRef<typeof import('./core/utils/src/math')['rand']>
457
- readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
458
- readonly range: UnwrapRef<typeof import('./core/arrays/src/index')['range']>
459
- readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
460
- readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
461
- readonly readPackageJson: UnwrapRef<typeof import('./core/storage/src/index')['readPackageJson']>
462
- readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
463
- readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
464
- readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
465
- readonly redis: UnwrapRef<typeof import('./core/cache/src/index')['redis']>
466
- readonly ref: UnwrapRef<typeof import('vue')['ref']>
467
- readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
468
- readonly remove: UnwrapRef<typeof import('./core/arrays/src/index')['remove']>
469
- readonly renderHeadToString: UnwrapRef<typeof import('./core/utils/src/vendors')['renderHeadToString']>
470
- readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
471
- readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
472
- readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
473
- readonly rimraf: UnwrapRef<typeof import('./core/utils/src/delete')['rimraf']>
474
- readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
475
- readonly routesPath: UnwrapRef<typeof import('./core/path/src/index')['routesPath']>
476
- readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
477
- readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
478
- readonly sample: UnwrapRef<typeof import('./core/arrays/src/index')['sample']>
479
- readonly schedulerPath: UnwrapRef<typeof import('./core/path/src/index')['schedulerPath']>
480
- readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
481
- readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
482
- readonly searchEnginePath: UnwrapRef<typeof import('./core/path/src/index')['searchEnginePath']>
483
- readonly searchFilters: UnwrapRef<typeof import('./core/search-engine/src/index')['searchFilters']>
484
- readonly searchParams: UnwrapRef<typeof import('./core/search-engine/src/index')['searchParams']>
485
- readonly securityPath: UnwrapRef<typeof import('./core/path/src/index')['securityPath']>
486
- readonly seed: UnwrapRef<typeof import('./core/database/src/seeder/index')['seed']>
487
- readonly semver: UnwrapRef<typeof import('./core/utils/src/versions')['semver']>
488
- readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/case')['sentenceCase']>
489
- readonly sep: UnwrapRef<typeof import('./core/path/src/index')['sep']>
490
- readonly serverPath: UnwrapRef<typeof import('./core/path/src/index')['serverPath']>
491
- readonly serverlessPath: UnwrapRef<typeof import('./core/path/src/index')['serverlessPath']>
492
- readonly services: UnwrapRef<typeof import('../config/services')['default']>
493
- readonly setEnvValue: UnwrapRef<typeof import('./core/utils/src/helpers')['setEnvValue']>
494
- readonly setSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['setSSRHandler']>
495
- readonly setTotalHits: UnwrapRef<typeof import('./core/search-engine/src/index')['setTotalHits']>
496
- readonly settingsPath: UnwrapRef<typeof import('./core/path/src/index')['settingsPath']>
497
- readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
498
- readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
499
- readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
500
- readonly shuffle: UnwrapRef<typeof import('./core/arrays/src/index')['shuffle']>
501
- readonly signalsPath: UnwrapRef<typeof import('./core/path/src/index')['signalsPath']>
502
- readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
503
- readonly slack: UnwrapRef<typeof import('./core/chat/src/index')['slack']>
504
- readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
505
- readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
506
- readonly slug: UnwrapRef<typeof import('./core/strings/src/utils')['slug']>
507
- readonly sms77: UnwrapRef<typeof import('./core/sms/src/index')['sms77']>
508
- readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
509
- readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
510
- readonly sns: UnwrapRef<typeof import('./core/sms/src/index')['sns']>
511
- readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
512
- readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
513
- readonly src: UnwrapRef<typeof import('./core/storage/src/index')['default']>
514
- readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
515
- readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
516
- readonly storagePath: UnwrapRef<typeof import('./core/path/src/index')['storagePath']>
517
- readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
518
- readonly stripe: UnwrapRef<typeof import('./core/payments/src/index')['stripe']>
519
- readonly subtract: UnwrapRef<typeof import('./core/utils/src/currency')['subtract']>
520
- readonly suite: UnwrapRef<typeof import('vitest')['suite']>
521
- readonly syncRef: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRef']>
522
- readonly syncRefs: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRefs']>
523
- readonly tablesPath: UnwrapRef<typeof import('./core/path/src/index')['tablesPath']>
524
- readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
525
- readonly teams: UnwrapRef<typeof import('./core/chat/src/index')['teams']>
526
- readonly telnyx: UnwrapRef<typeof import('./core/sms/src/index')['telnyx']>
527
- readonly template: UnwrapRef<typeof import('./core/strings/src/utils')['template']>
528
- readonly templateRef: UnwrapRef<typeof import('./core/utils/src/vendors')['templateRef']>
529
- readonly termii: UnwrapRef<typeof import('./core/sms/src/index')['termii']>
530
- readonly test: UnwrapRef<typeof import('vitest')['test']>
531
- readonly testingPath: UnwrapRef<typeof import('./core/path/src/index')['testingPath']>
532
- readonly testsPath: UnwrapRef<typeof import('./core/path/src/index')['testsPath']>
533
- readonly throttle: UnwrapRef<typeof import('./core/utils/src/throttle')['throttle']>
534
- readonly throttledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledRef']>
535
- readonly throttledWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledWatch']>
536
- readonly titleCase: UnwrapRef<typeof import('./core/strings/src/case')['titleCase']>
537
- readonly toArray: UnwrapRef<typeof import('./core/arrays/src/index')['toArray']>
538
- readonly toDecimal: UnwrapRef<typeof import('./core/utils/src/currency')['toDecimal']>
539
- readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
540
- readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
541
- readonly toReactive: UnwrapRef<typeof import('./core/utils/src/vendors')['toReactive']>
542
- readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
543
- readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
544
- readonly toSnapshot: UnwrapRef<typeof import('./core/utils/src/currency')['toSnapshot']>
545
- readonly toString: UnwrapRef<typeof import('./core/utils/src/base')['toString']>
546
- readonly toUnits: UnwrapRef<typeof import('./core/utils/src/currency')['toUnits']>
547
- readonly toggleDark: UnwrapRef<typeof import('../functions/dark')['toggleDark']>
548
- readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
549
- readonly transformerCompileClass: UnwrapRef<typeof import('@stacksjs/ui')['transformerCompileClass']>
550
- readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
551
- readonly trimScale: UnwrapRef<typeof import('./core/utils/src/currency')['trimScale']>
552
- readonly tryOnBeforeMount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeMount']>
553
- readonly tryOnBeforeUnmount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']>
554
- readonly tryOnMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnMounted']>
555
- readonly tryOnScopeDispose: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnScopeDispose']>
556
- readonly tryOnUnmounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnUnmounted']>
557
- readonly twilio: UnwrapRef<typeof import('./core/sms/src/index')['twilio']>
558
- readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
559
- readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
560
- readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
561
- readonly uniq: UnwrapRef<typeof import('./core/arrays/src/index')['uniq']>
562
- readonly uniqueBy: UnwrapRef<typeof import('./core/arrays/src/index')['uniqueBy']>
563
- readonly unit: UnwrapRef<typeof import('./core/testing/src/index')['unit']>
564
- readonly unref: UnwrapRef<typeof import('vue')['unref']>
565
- readonly unrefElement: UnwrapRef<typeof import('./core/utils/src/vendors')['unrefElement']>
566
- readonly until: UnwrapRef<typeof import('./core/utils/src/vendors')['until']>
567
- readonly updateConfigFile: UnwrapRef<typeof import('./core/storage/src/index')['updateConfigFile']>
568
- readonly upstash: UnwrapRef<typeof import('./core/cache/src/index')['upstash']>
569
- readonly useAbs: UnwrapRef<typeof import('./core/utils/src/math')['useAbs']>
570
- readonly useActiveElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useActiveElement']>
571
- readonly useAnimate: UnwrapRef<typeof import('./core/utils/src/vendors')['useAnimate']>
572
- readonly useAsyncQueue: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncQueue']>
573
- readonly useAsyncState: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncState']>
574
- readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
575
- readonly useAverage: UnwrapRef<typeof import('./core/utils/src/math')['useAverage']>
576
- readonly useBase64: UnwrapRef<typeof import('./core/utils/src/vendors')['useBase64']>
577
- readonly useBattery: UnwrapRef<typeof import('./core/utils/src/vendors')['useBattery']>
578
- readonly useBluetooth: UnwrapRef<typeof import('./core/utils/src/vendors')['useBluetooth']>
579
- readonly useBreakpoints: UnwrapRef<typeof import('./core/utils/src/vendors')['useBreakpoints']>
580
- readonly useBroadcastChannel: UnwrapRef<typeof import('./core/utils/src/vendors')['useBroadcastChannel']>
581
- readonly useBrowserLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useBrowserLocation']>
582
- readonly useCached: UnwrapRef<typeof import('./core/utils/src/vendors')['useCached']>
583
- readonly useCeil: UnwrapRef<typeof import('./core/utils/src/math')['useCeil']>
584
- readonly useChat: UnwrapRef<typeof import('./core/notifications/src/index')['useChat']>
585
- readonly useClamp: UnwrapRef<typeof import('./core/utils/src/math')['useClamp']>
586
- readonly useClipboard: UnwrapRef<typeof import('./core/utils/src/vendors')['useClipboard']>
587
- readonly useCloned: UnwrapRef<typeof import('./core/utils/src/vendors')['useCloned']>
588
- readonly useColorMode: UnwrapRef<typeof import('./core/utils/src/vendors')['useColorMode']>
589
- readonly useConfirmDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useConfirmDialog']>
590
- readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
591
- readonly useCssVar: UnwrapRef<typeof import('./core/utils/src/vendors')['useCssVar']>
592
- readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
593
- readonly useCurrentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useCurrentElement']>
594
- readonly useCycleList: UnwrapRef<typeof import('./core/utils/src/vendors')['useCycleList']>
595
- readonly useDark: UnwrapRef<typeof import('./core/utils/src/vendors')['useDark']>
596
- readonly useDateFormat: UnwrapRef<typeof import('./core/utils/src/vendors')['useDateFormat']>
597
- readonly useDebouncedRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useDebouncedRefHistory']>
598
- readonly useDeviceMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceMotion']>
599
- readonly useDeviceOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceOrientation']>
600
- readonly useDevicePixelRatio: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicePixelRatio']>
601
- readonly useDevicesList: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicesList']>
602
- readonly useDisplayMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useDisplayMedia']>
603
- readonly useDocumentVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useDocumentVisibility']>
604
- readonly useDraggable: UnwrapRef<typeof import('./core/utils/src/vendors')['useDraggable']>
605
- readonly useDropZone: UnwrapRef<typeof import('./core/utils/src/vendors')['useDropZone']>
606
- readonly useElementBounding: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementBounding']>
607
- readonly useElementByPoint: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementByPoint']>
608
- readonly useElementHover: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementHover']>
609
- readonly useElementSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementSize']>
610
- readonly useElementVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementVisibility']>
611
- readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
612
- readonly useEventBus: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventBus']>
613
- readonly useEventListener: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventListener']>
614
- readonly useEventSource: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventSource']>
615
- readonly useEyeDropper: UnwrapRef<typeof import('./core/utils/src/vendors')['useEyeDropper']>
616
- readonly useFavicon: UnwrapRef<typeof import('./core/utils/src/vendors')['useFavicon']>
617
- readonly useFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['useFetch']>
618
- readonly useFileDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileDialog']>
619
- readonly useFileSystemAccess: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileSystemAccess']>
620
- readonly useFloor: UnwrapRef<typeof import('./core/utils/src/math')['useFloor']>
621
- readonly useFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocus']>
622
- readonly useFocusWithin: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocusWithin']>
623
- readonly useFps: UnwrapRef<typeof import('./core/utils/src/vendors')['useFps']>
624
- readonly useFullscreen: UnwrapRef<typeof import('./core/utils/src/vendors')['useFullscreen']>
625
- readonly useGamepad: UnwrapRef<typeof import('./core/utils/src/vendors')['useGamepad']>
626
- readonly useGeolocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useGeolocation']>
627
- readonly useIdle: UnwrapRef<typeof import('./core/utils/src/vendors')['useIdle']>
628
- readonly useImage: UnwrapRef<typeof import('./core/utils/src/vendors')['useImage']>
629
- readonly useInfiniteScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useInfiniteScroll']>
630
- readonly useIntersectionObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useIntersectionObserver']>
631
- readonly useKeyModifier: UnwrapRef<typeof import('./core/utils/src/vendors')['useKeyModifier']>
632
- readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
633
- readonly useLocalStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useLocalStorage']>
634
- readonly useMagicKeys: UnwrapRef<typeof import('./core/utils/src/vendors')['useMagicKeys']>
635
- readonly useManualRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useManualRefHistory']>
636
- readonly useMath: UnwrapRef<typeof import('./core/utils/src/math')['useMath']>
637
- readonly useMax: UnwrapRef<typeof import('./core/utils/src/math')['useMax']>
638
- readonly useMediaControls: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaControls']>
639
- readonly useMediaQuery: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaQuery']>
640
- readonly useMemoize: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemoize']>
641
- readonly useMemory: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemory']>
642
- readonly useMin: UnwrapRef<typeof import('./core/utils/src/math')['useMin']>
643
- readonly useMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['useMounted']>
644
- readonly useMouse: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouse']>
645
- readonly useMouseInElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouseInElement']>
646
- readonly useMousePressed: UnwrapRef<typeof import('./core/utils/src/vendors')['useMousePressed']>
647
- readonly useMutationObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useMutationObserver']>
648
- readonly useNavigatorLanguage: UnwrapRef<typeof import('./core/utils/src/vendors')['useNavigatorLanguage']>
649
- readonly useNetwork: UnwrapRef<typeof import('./core/utils/src/vendors')['useNetwork']>
650
- readonly useNotification: UnwrapRef<typeof import('./core/notifications/src/index')['useNotification']>
651
- readonly useNow: UnwrapRef<typeof import('./core/utils/src/vendors')['useNow']>
652
- readonly useObjectUrl: UnwrapRef<typeof import('./core/utils/src/vendors')['useObjectUrl']>
653
- readonly useOffsetPagination: UnwrapRef<typeof import('./core/utils/src/vendors')['useOffsetPagination']>
654
- readonly useOnline: UnwrapRef<typeof import('./core/utils/src/vendors')['useOnline']>
655
- readonly usePageLeave: UnwrapRef<typeof import('./core/utils/src/vendors')['usePageLeave']>
656
- readonly useParallax: UnwrapRef<typeof import('./core/utils/src/vendors')['useParallax']>
657
- readonly useParentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useParentElement']>
658
- readonly usePerformanceObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['usePerformanceObserver']>
659
- readonly usePermission: UnwrapRef<typeof import('./core/utils/src/vendors')['usePermission']>
660
- readonly usePointer: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointer']>
661
- readonly usePointerLock: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerLock']>
662
- readonly usePointerSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerSwipe']>
663
- readonly usePrecision: UnwrapRef<typeof import('./core/utils/src/math')['usePrecision']>
664
- readonly usePreferredColorScheme: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredColorScheme']>
665
- readonly usePreferredContrast: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredContrast']>
666
- readonly usePreferredDark: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredDark']>
667
- readonly usePreferredLanguages: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredLanguages']>
668
- readonly usePreferredReducedMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredReducedMotion']>
669
- readonly usePrevious: UnwrapRef<typeof import('./core/utils/src/vendors')['usePrevious']>
670
- readonly useProjection: UnwrapRef<typeof import('./core/utils/src/math')['useProjection']>
671
- readonly useRafFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useRafFn']>
672
- readonly useRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useRefHistory']>
673
- readonly useResizeObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useResizeObserver']>
674
- readonly useRound: UnwrapRef<typeof import('./core/utils/src/math')['useRound']>
675
- readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
676
- readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
677
- readonly useSMS: UnwrapRef<typeof import('./core/notifications/src/index')['useSMS']>
678
- readonly useScreenOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenOrientation']>
679
- readonly useScreenSafeArea: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenSafeArea']>
680
- readonly useScriptTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useScriptTag']>
681
- readonly useScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useScroll']>
682
- readonly useScrollLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useScrollLock']>
683
- readonly useSearchEngine: UnwrapRef<typeof import('./core/search-engine/src/index')['useSearchEngine']>
684
- readonly useSessionStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useSessionStorage']>
685
- readonly useShare: UnwrapRef<typeof import('./core/utils/src/vendors')['useShare']>
686
- readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
687
- readonly useSorted: UnwrapRef<typeof import('./core/utils/src/vendors')['useSorted']>
688
- readonly useSpeechRecognition: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechRecognition']>
689
- readonly useSpeechSynthesis: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechSynthesis']>
690
- readonly useStepper: UnwrapRef<typeof import('./core/utils/src/vendors')['useStepper']>
691
- readonly useStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorage']>
692
- readonly useStorageAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorageAsync']>
693
- readonly useStyleTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useStyleTag']>
694
- readonly useSum: UnwrapRef<typeof import('./core/utils/src/math')['useSum']>
695
- readonly useSupported: UnwrapRef<typeof import('./core/utils/src/vendors')['useSupported']>
696
- readonly useSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['useSwipe']>
697
- readonly useTemplateRefsList: UnwrapRef<typeof import('./core/utils/src/vendors')['useTemplateRefsList']>
698
- readonly useTextDirection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextDirection']>
699
- readonly useTextSelection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextSelection']>
700
- readonly useTextareaAutosize: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextareaAutosize']>
701
- readonly useThrottledRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useThrottledRefHistory']>
702
- readonly useTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeAgo']>
703
- readonly useTimeoutPoll: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeoutPoll']>
704
- readonly useTimestamp: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimestamp']>
705
- readonly useTitle: UnwrapRef<typeof import('./core/utils/src/vendors')['useTitle']>
706
- readonly useToggle: UnwrapRef<typeof import('./core/utils/src/vendors')['useToggle']>
707
- readonly useTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['useTransition']>
708
- readonly useTrunc: UnwrapRef<typeof import('./core/utils/src/math')['useTrunc']>
709
- readonly useUrlSearchParams: UnwrapRef<typeof import('./core/utils/src/vendors')['useUrlSearchParams']>
710
- readonly useUserMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useUserMedia']>
711
- readonly useVModel: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModel']>
712
- readonly useVModels: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModels']>
713
- readonly useVibrate: UnwrapRef<typeof import('./core/utils/src/vendors')['useVibrate']>
714
- readonly useVirtualList: UnwrapRef<typeof import('./core/utils/src/vendors')['useVirtualList']>
715
- readonly useWakeLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useWakeLock']>
716
- readonly useWebNotification: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebNotification']>
717
- readonly useWebSocket: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebSocket']>
718
- readonly useWebWorker: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorker']>
719
- readonly useWebWorkerFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorkerFn']>
720
- readonly useWindowFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowFocus']>
721
- readonly useWindowScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowScroll']>
722
- readonly useWindowSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowSize']>
723
- readonly userConfigPath: UnwrapRef<typeof import('./core/path/src/index')['userConfigPath']>
724
- readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
725
- readonly validate: UnwrapRef<typeof import('./core/validation/src/validate')['validate']>
726
- readonly validateUsername: UnwrapRef<typeof import('./core/validation/src/is')['validateUsername']>
727
- readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
728
- readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
729
- readonly vi: UnwrapRef<typeof import('vitest')['vi']>
730
- readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
731
- readonly watch: UnwrapRef<typeof import('vue')['watch']>
732
- readonly watchArray: UnwrapRef<typeof import('./core/utils/src/vendors')['watchArray']>
733
- readonly watchAtMost: UnwrapRef<typeof import('./core/utils/src/vendors')['watchAtMost']>
734
- readonly watchDebounced: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDebounced']>
735
- readonly watchDeep: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDeep']>
736
- readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
737
- readonly watchIgnorable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchIgnorable']>
738
- readonly watchImmediate: UnwrapRef<typeof import('./core/utils/src/vendors')['watchImmediate']>
739
- readonly watchOnce: UnwrapRef<typeof import('./core/utils/src/vendors')['watchOnce']>
740
- readonly watchPausable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchPausable']>
741
- readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
742
- readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
743
- readonly watchThrottled: UnwrapRef<typeof import('./core/utils/src/vendors')['watchThrottled']>
744
- readonly watchTriggerable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchTriggerable']>
745
- readonly watchWithFilter: UnwrapRef<typeof import('./core/utils/src/vendors')['watchWithFilter']>
746
- readonly whenever: UnwrapRef<typeof import('./core/utils/src/vendors')['whenever']>
747
- readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
748
- readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
749
- readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
750
- readonly z: UnwrapRef<typeof import('./core/validation/src/validate')['z']>
751
- }
752
- }
753
- ]
754
7
  const $: typeof import('vue/macros')['$']
8
+ const $$: typeof import('vue/macros')['$$']
755
9
  const $computed: typeof import('vue/macros')['$computed']
756
10
  const $customRef: typeof import('vue/macros')['$customRef']
757
11
  const $ref: typeof import('vue/macros')['$ref']
758
12
  const $shallowRef: typeof import('vue/macros')['$shallowRef']
759
13
  const $toRef: typeof import('vue/macros')['$toRef']
14
+ const Arr: typeof import('./core/arrays/src/macro')['Arr']
760
15
  const Collection: typeof import('./core/objects/src/index')['Collection']
761
16
  const CssEngine: typeof import('@stacksjs/ui')['CssEngine']
762
17
  const EffectScope: typeof import('vue')['EffectScope']
763
18
  const Err: typeof import('./core/error-handling/src/index')['Err']
19
+ const ExitCode: typeof import('./core/cli/src/index')['ExitCode']
764
20
  const Head: typeof import('./core/utils/src/vendors')['Head']
765
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']
766
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']
767
28
  const Result: typeof import('./core/error-handling/src/index')['Result']
768
29
  const ResultAsync: typeof import('./core/error-handling/src/index')['ResultAsync']
769
30
  const Router: typeof import('./core/router/src/index')['Router']
770
31
  const Store: typeof import('@stacksjs/ui')['Store']
771
- 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']
772
34
  const UiEngine: typeof import('@stacksjs/ui')['UiEngine']
35
+ const Validator: typeof import('./core/validation/src/validate')['Validator']
773
36
  const _dirname: typeof import('./core/storage/src/index')['_dirname']
774
37
  const actionsPath: typeof import('./core/path/src/index')['actionsPath']
775
38
  const add: typeof import('./core/utils/src/currency')['add']
@@ -781,17 +44,24 @@ declare module 'vue' {
781
44
  const afterEach: typeof import('vitest')['afterEach']
782
45
  const aiPath: typeof import('./core/path/src/index')['aiPath']
783
46
  const aliasPath: typeof import('./core/path/src/index')['aliasPath']
47
+ const all: typeof import('./core/events/src/index')['all']
784
48
  const allocate: typeof import('./core/utils/src/currency')['allocate']
785
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']
786
52
  const app: typeof import('../config/app')['default']
787
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']
788
56
  const arraysPath: typeof import('./core/path/src/index')['arraysPath']
789
57
  const assert: typeof import('vitest')['assert']
790
58
  const asyncComputed: typeof import('./core/utils/src/vendors')['asyncComputed']
791
- const at: typeof import('./core/arrays/src/index')['at']
59
+ const at: typeof import('./core/arrays/src/helpers')['at']
792
60
  const auth: typeof import('./core/auth/src/index')['auth']
793
61
  const authPath: typeof import('./core/path/src/index')['authPath']
794
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']
795
65
  const base64Encode: typeof import('./core/security/src/hash')['base64Encode']
796
66
  const base64Verify: typeof import('./core/security/src/hash')['base64Verify']
797
67
  const basename: typeof import('./core/path/src/index')['basename']
@@ -800,6 +70,26 @@ declare module 'vue' {
800
70
  const bcryptVerify: typeof import('./core/security/src/hash')['bcryptVerify']
801
71
  const beforeAll: typeof import('vitest')['beforeAll']
802
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']
803
93
  const breakpointsAntDesign: typeof import('./core/utils/src/vendors')['breakpointsAntDesign']
804
94
  const breakpointsBootstrapV5: typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']
805
95
  const breakpointsMasterCss: typeof import('./core/utils/src/vendors')['breakpointsMasterCss']
@@ -808,19 +98,18 @@ declare module 'vue' {
808
98
  const breakpointsTailwind: typeof import('./core/utils/src/vendors')['breakpointsTailwind']
809
99
  const breakpointsVuetify: typeof import('./core/utils/src/vendors')['breakpointsVuetify']
810
100
  const buildEnginePath: typeof import('./core/path/src/index')['buildEnginePath']
811
- const buildEntriesPath: typeof import('./core/path/src/index')['buildEntriesPath']
812
101
  const buildPath: typeof import('./core/path/src/index')['buildPath']
813
102
  const cache: typeof import('../config/cache')['default']
814
103
  const cachePath: typeof import('./core/path/src/index')['cachePath']
815
104
  const calculatePagination: typeof import('./core/search-engine/src/index')['calculatePagination']
816
105
  const camelCase: typeof import('./core/strings/src/case')['camelCase']
817
106
  const capitalCase: typeof import('./core/strings/src/case')['capitalCase']
818
- const capitalize: typeof import('./core/strings/src/utils')['capitalize']
107
+ const capitalize: typeof import('./core/strings/src/case')['capitalize']
819
108
  const cdn: typeof import('../config/cdn')['default']
820
109
  const chai: typeof import('vitest')['chai']
821
110
  const chatPath: typeof import('./core/path/src/index')['chatPath']
822
111
  const clamp: typeof import('./core/utils/src/math')['clamp']
823
- const clampArrayRange: typeof import('./core/arrays/src/index')['clampArrayRange']
112
+ const clampArrayRange: typeof import('./core/arrays/src/helpers')['clampArrayRange']
824
113
  const clearUndefined: typeof import('./core/objects/src/index')['clearUndefined']
825
114
  const cli: typeof import('../config/cli')['default']
826
115
  const cliPath: typeof import('./core/path/src/index')['cliPath']
@@ -829,27 +118,29 @@ declare module 'vue' {
829
118
  const cloudPath: typeof import('./core/path/src/index')['cloudPath']
830
119
  const collect: typeof import('./core/objects/src/index')['collect']
831
120
  const collectionsPath: typeof import('./core/path/src/index')['collectionsPath']
121
+ const command: typeof import('./core/cli/src/command')['command']
832
122
  const compare: typeof import('./core/utils/src/currency')['compare']
833
123
  const componentsPath: typeof import('./core/path/src/index')['componentsPath']
834
124
  const computed: typeof import('vue')['computed']
835
125
  const computedAsync: typeof import('./core/utils/src/vendors')['computedAsync']
836
126
  const computedEager: typeof import('./core/utils/src/vendors')['computedEager']
837
127
  const computedInject: typeof import('./core/utils/src/vendors')['computedInject']
128
+ const computedSignal: typeof import('./core/signals/src/index')['computedSignal']
838
129
  const computedWithControl: typeof import('./core/utils/src/vendors')['computedWithControl']
839
- const config: typeof import('./core/notifications/src/tailwind.config')['config']
130
+ const config: typeof import('./core/utils/src/config')['config']
840
131
  const configPath: typeof import('./core/path/src/index')['configPath']
841
132
  const constantCase: typeof import('./core/strings/src/case')['constantCase']
842
- const contains: typeof import('./core/arrays/src/index')['contains']
843
- const containsAll: typeof import('./core/arrays/src/index')['containsAll']
844
- const containsAny: typeof import('./core/arrays/src/index')['containsAny']
845
- const containsNone: typeof import('./core/arrays/src/index')['containsNone']
846
- 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']
847
138
  const controlledComputed: typeof import('./core/utils/src/vendors')['controlledComputed']
848
139
  const controlledRef: typeof import('./core/utils/src/vendors')['controlledRef']
849
140
  const convert: typeof import('./core/utils/src/currency')['convert']
850
141
  const copyFolder: typeof import('./core/storage/src/index')['copyFolder']
851
142
  const corePath: typeof import('./core/path/src/index')['corePath']
852
- const count: typeof import('../functions/counter')['count']
143
+ const count: typeof import('../resources/functions/counter')['count']
853
144
  const createApp: typeof import('vue')['createApp']
854
145
  const createControlledPromise: typeof import('./core/utils/src/promise')['createControlledPromise']
855
146
  const createEventHook: typeof import('./core/utils/src/vendors')['createEventHook']
@@ -859,6 +150,7 @@ declare module 'vue' {
859
150
  const createGlobalState: typeof import('./core/utils/src/vendors')['createGlobalState']
860
151
  const createHead: typeof import('./core/utils/src/vendors')['createHead']
861
152
  const createInjectionState: typeof import('./core/utils/src/vendors')['createInjectionState']
153
+ const createMysqlPool: typeof import('./core/query-builder/src/kysely')['createMysqlPool']
862
154
  const createProjection: typeof import('./core/utils/src/math')['createProjection']
863
155
  const createPromiseLock: typeof import('./core/utils/src/promise')['createPromiseLock']
864
156
  const createReactiveFn: typeof import('./core/utils/src/vendors')['createReactiveFn']
@@ -867,14 +159,18 @@ declare module 'vue' {
867
159
  const createSingletonPromise: typeof import('./core/utils/src/promise')['createSingletonPromise']
868
160
  const createTemplatePromise: typeof import('./core/utils/src/vendors')['createTemplatePromise']
869
161
  const createUnrefFn: typeof import('./core/utils/src/vendors')['createUnrefFn']
162
+ const currency: typeof import('./core/utils/src/currency')['currency']
870
163
  const currentPage: typeof import('./core/search-engine/src/index')['currentPage']
871
164
  const customElementsDataPath: typeof import('./core/path/src/index')['customElementsDataPath']
872
165
  const customRef: typeof import('vue')['customRef']
873
166
  const customStorageEventName: typeof import('./core/utils/src/vendors')['customStorageEventName']
167
+ const cyan: typeof import('./core/cli/src/utilities')['cyan']
874
168
  const dashboardPath: typeof import('./core/path/src/index')['dashboardPath']
875
169
  const database: typeof import('../config/database')['default']
876
170
  const databasePath: typeof import('./core/path/src/index')['databasePath']
877
- 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']
878
174
  const debounce: typeof import('./core/utils/src/debounce')['debounce']
879
175
  const debouncedRef: typeof import('./core/utils/src/vendors')['debouncedRef']
880
176
  const debouncedWatch: typeof import('./core/utils/src/vendors')['debouncedWatch']
@@ -915,53 +211,58 @@ declare module 'vue' {
915
211
  const delimiter: typeof import('./core/path/src/index')['delimiter']
916
212
  const describe: typeof import('vitest')['describe']
917
213
  const desktopPath: typeof import('./core/path/src/index')['desktopPath']
918
- const detectIndent: typeof import('./core/utils/src/helpers')['detectIndent']
919
- 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']
920
216
  const determineDebugLevel: typeof import('./core/utils/src/helpers')['determineDebugLevel']
921
217
  const determineResetPreset: typeof import('./core/utils/src/helpers')['determineResetPreset']
922
218
  const determineState: typeof import('./core/search-engine/src/helpers')['determineState']
923
219
  const developmentPath: typeof import('./core/path/src/index')['developmentPath']
220
+ const dim: typeof import('./core/cli/src/utilities')['dim']
924
221
  const dinero: typeof import('./core/utils/src/currency')['dinero']
925
222
  const dirname: typeof import('./core/path/src/index')['dirname']
926
223
  const discord: typeof import('./core/chat/src/index')['discord']
224
+ const dispatch: typeof import('./core/events/src/index')['dispatch']
927
225
  const dns: typeof import('../config/dns')['default']
226
+ const dnsPath: typeof import('./core/path/src/index')['dnsPath']
928
227
  const docs: typeof import('../config/docs')['default']
929
228
  const docsPath: typeof import('./core/path/src/index')['docsPath']
930
229
  const doesFolderExist: typeof import('./core/storage/src/index')['doesFolderExist']
931
- const doesNotContain: typeof import('./core/arrays/src/index')['doesNotContain']
932
- const domainsPath: typeof import('./core/path/src/index')['domainsPath']
230
+ const doesNotContain: typeof import('./core/arrays/src/contains')['doesNotContain']
933
231
  const dotCase: typeof import('./core/strings/src/case')['dotCase']
934
- const dump: typeof import('./core/logging/src/index')['dump']
232
+ const dump: typeof import('@stacksjs/logging')['dump']
935
233
  const dynamodb: typeof import('./core/cache/src/index')['dynamodb']
936
234
  const eagerComputed: typeof import('./core/utils/src/vendors')['eagerComputed']
235
+ const effect: typeof import('./core/signals/src/index')['effect']
937
236
  const effectScope: typeof import('vue')['effectScope']
938
- const email: typeof import('../config/email')['default']
237
+ const email: typeof import('./core/validation/src/validate')['email']
939
238
  const emailPath: typeof import('./core/path/src/index')['emailPath']
940
239
  const encrypt: typeof import('./core/security/src/crypt')['encrypt']
941
240
  const ensurePrefix: typeof import('./core/strings/src/utils')['ensurePrefix']
942
241
  const ensureSuffix: typeof import('./core/strings/src/utils')['ensureSuffix']
943
- const env: typeof import('./core/utils/src/config')['env']
944
- 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']
945
244
  const equal: typeof import('./core/utils/src/currency')['equal']
946
245
  const err: typeof import('./core/error-handling/src/index')['err']
947
246
  const errAsync: typeof import('./core/error-handling/src/index')['errAsync']
948
247
  const errorHandlingPath: typeof import('./core/path/src/index')['errorHandlingPath']
949
248
  const eslint: typeof import('./core/lint/src/index')['eslint']
950
- const events: typeof import('../config/events')['default']
249
+ const events: typeof import('./core/events/src/index')['events']
951
250
  const eventsPath: typeof import('./core/path/src/index')['eventsPath']
952
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']
953
254
  const executeTransition: typeof import('./core/utils/src/vendors')['executeTransition']
954
255
  const expect: typeof import('vitest')['expect']
955
256
  const expo: typeof import('./core/push/src/index')['expo']
956
257
  const extendRef: typeof import('./core/utils/src/vendors')['extendRef']
957
258
  const extname: typeof import('./core/path/src/index')['extname']
259
+ const faker: typeof import('./core/faker/src/index')['faker']
958
260
  const fakerPath: typeof import('./core/path/src/index')['fakerPath']
959
261
  const fcm: typeof import('./core/push/src/index')['fcm']
960
262
  const feature: typeof import('./core/testing/src/index')['feature']
961
- const filesystem: typeof import('./core/storage/src/index')['filesystem']
962
263
  const filterName: typeof import('./core/search-engine/src/index')['filterName']
963
264
  const filters: typeof import('./core/search-engine/src/index')['filters']
964
- const flattenArrayable: typeof import('./core/arrays/src/index')['flattenArrayable']
265
+ const flatten: typeof import('./core/arrays/src/helpers')['flatten']
965
266
  const format: typeof import('./core/path/src/index')['format']
966
267
  const formatTimeAgo: typeof import('./core/utils/src/vendors')['formatTimeAgo']
967
268
  const frameworkPath: typeof import('./core/path/src/index')['frameworkPath']
@@ -969,11 +270,14 @@ declare module 'vue' {
969
270
  const fromPromise: typeof import('./core/error-handling/src/index')['fromPromise']
970
271
  const fromSafePromise: typeof import('./core/error-handling/src/index')['fromSafePromise']
971
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']
972
275
  const functionsPath: typeof import('./core/path/src/index')['functionsPath']
973
276
  const generateAppKey: typeof import('./core/security/src/key')['generateAppKey']
974
277
  const generateFactoryFile: typeof import('./core/database/src/factory/index')['generateFactoryFile']
975
278
  const getCurrentInstance: typeof import('vue')['getCurrentInstance']
976
279
  const getCurrentScope: typeof import('vue')['getCurrentScope']
280
+ const getEnv: typeof import('./core/validation/src/types/env')['getEnv']
977
281
  const getSSRHandler: typeof import('./core/utils/src/vendors')['getSSRHandler']
978
282
  const getTypeName: typeof import('./core/utils/src/base')['getTypeName']
979
283
  const git: typeof import('../config/git')['default']
@@ -981,10 +285,13 @@ declare module 'vue' {
981
285
  const goToNextPage: typeof import('./core/search-engine/src/index')['goToNextPage']
982
286
  const goToPage: typeof import('./core/search-engine/src/index')['goToPage']
983
287
  const goToPrevPage: typeof import('./core/search-engine/src/index')['goToPrevPage']
288
+ const gray: typeof import('./core/cli/src/utilities')['gray']
984
289
  const greaterThan: typeof import('./core/utils/src/currency')['greaterThan']
985
290
  const greaterThanOrEqual: typeof import('./core/utils/src/currency')['greaterThanOrEqual']
291
+ const green: typeof import('./core/cli/src/utilities')['green']
986
292
  const gupshup: typeof import('./core/sms/src/index')['gupshup']
987
293
  const h: typeof import('vue')['h']
294
+ const handleError: typeof import('./core/error-handling/src/index')['handleError']
988
295
  const hasComponents: typeof import('./core/storage/src/index')['hasComponents']
989
296
  const hasFiles: typeof import('./core/storage/src/index')['hasFiles']
990
297
  const hasFunctions: typeof import('./core/storage/src/index')['hasFunctions']
@@ -996,11 +303,17 @@ declare module 'vue' {
996
303
  const haveSameCurrency: typeof import('./core/utils/src/currency')['haveSameCurrency']
997
304
  const headerCase: typeof import('./core/strings/src/case')['headerCase']
998
305
  const healthPath: typeof import('./core/path/src/index')['healthPath']
306
+ const hidden: typeof import('./core/cli/src/utilities')['hidden']
999
307
  const hits: typeof import('./core/search-engine/src/index')['hits']
1000
308
  const ignorableWatch: typeof import('./core/utils/src/vendors')['ignorableWatch']
1001
- const increment: typeof import('../functions/counter')['increment']
309
+ const increment: typeof import('../resources/functions/counter')['increment']
1002
310
  const index: typeof import('./core/search-engine/src/index')['index']
1003
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']
1004
317
  const isAbsolute: typeof import('./core/path/src/index')['isAbsolute']
1005
318
  const isAlpha: typeof import('./core/validation/src/is')['isAlpha']
1006
319
  const isAlphanumeric: typeof import('./core/validation/src/is')['isAlphanumeric']
@@ -1014,7 +327,7 @@ declare module 'vue' {
1014
327
  const isByteLength: typeof import('./core/validation/src/is')['isByteLength']
1015
328
  const isCreditCard: typeof import('./core/validation/src/is')['isCreditCard']
1016
329
  const isCurrency: typeof import('./core/validation/src/is')['isCurrency']
1017
- const isDark: typeof import('../functions/dark')['isDark']
330
+ const isDark: typeof import('../resources/functions/dark')['isDark']
1018
331
  const isDataURI: typeof import('./core/validation/src/is')['isDataURI']
1019
332
  const isDate: typeof import('./core/validation/src/is')['isDate']
1020
333
  const isDeepEqual: typeof import('./core/utils/src/equal')['isDeepEqual']
@@ -1047,6 +360,7 @@ declare module 'vue' {
1047
360
  const isIdentityCard: typeof import('./core/validation/src/is')['isIdentityCard']
1048
361
  const isInteger: typeof import('./core/validation/src/is')['isInteger']
1049
362
  const isIntegerOrFloat: typeof import('./core/validation/src/is')['isIntegerOrFloat']
363
+ const isIpv6: typeof import('./core/utils/src/helpers')['isIpv6']
1050
364
  const isJSON: typeof import('./core/validation/src/is')['isJSON']
1051
365
  const isJWT: typeof import('./core/validation/src/is')['isJWT']
1052
366
  const isKeyOf: typeof import('./core/objects/src/index')['isKeyOf']
@@ -1058,7 +372,7 @@ declare module 'vue' {
1058
372
  const isMap: typeof import('./core/validation/src/is')['isMap']
1059
373
  const isMimeType: typeof import('./core/validation/src/is')['isMimeType']
1060
374
  const isMobilePhone: typeof import('./core/validation/src/is')['isMobilePhone']
1061
- const isMongoId: typeof import('./core/validation/src/is')['isMongoId']
375
+ const isMoney: typeof import('./core/validation/src/is')['isMoney']
1062
376
  const isNegative: typeof import('./core/validation/src/is')['isNegative']
1063
377
  const isNull: typeof import('./core/validation/src/is')['isNull']
1064
378
  const isNumber: typeof import('./core/validation/src/is')['isNumber']
@@ -1091,34 +405,51 @@ declare module 'vue' {
1091
405
  const isWindow: typeof import('./core/validation/src/is')['isWindow']
1092
406
  const isZero: typeof import('./core/utils/src/currency')['isZero']
1093
407
  const it: typeof import('vitest')['it']
408
+ const italic: typeof import('./core/cli/src/utilities')['italic']
1094
409
  const join: typeof import('./core/path/src/index')['join']
1095
410
  const kebabCase: typeof import('./core/strings/src/case')['kebabCase']
1096
411
  const langPath: typeof import('./core/path/src/index')['langPath']
1097
- const last: typeof import('./core/arrays/src/index')['last']
412
+ const last: typeof import('./core/arrays/src/helpers')['last']
1098
413
  const lastPageNumber: typeof import('./core/search-engine/src/index')['lastPageNumber']
1099
414
  const lessThan: typeof import('./core/utils/src/currency')['lessThan']
1100
415
  const lessThanOrEqual: typeof import('./core/utils/src/currency')['lessThanOrEqual']
1101
416
  const library: typeof import('../config/library')['default']
1102
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']
1103
428
  const lintPath: typeof import('./core/path/src/index')['lintPath']
1104
- 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']
1105
431
  const loggingPath: typeof import('./core/path/src/index')['loggingPath']
1106
432
  const logicNot: typeof import('./core/utils/src/math')['logicNot']
1107
433
  const logicOr: typeof import('./core/utils/src/math')['logicOr']
434
+ const logsPath: typeof import('./core/path/src/index')['logsPath']
1108
435
  const loop: typeof import('./core/utils/src/base')['loop']
436
+ const magenta: typeof import('./core/cli/src/utilities')['magenta']
1109
437
  const makeHash: typeof import('./core/security/src/hash')['makeHash']
1110
438
  const mapGamepadToXbox360Controller: typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']
1111
439
  const markRaw: typeof import('vue')['markRaw']
1112
440
  const maximum: typeof import('./core/utils/src/currency')['maximum']
1113
441
  const md5Encode: typeof import('./core/security/src/hash')['md5Encode']
442
+ const median: typeof import('./core/arrays/src/math')['median']
1114
443
  const memcached: typeof import('./core/cache/src/index')['memcached']
1115
- const mergeArrayable: typeof import('./core/arrays/src/index')['mergeArrayable']
444
+ const mergeArrayable: typeof import('./core/arrays/src/helpers')['mergeArrayable']
1116
445
  const migrate: typeof import('./core/database/src/migrations/index')['migrate']
1117
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']
1118
449
  const modelsPath: typeof import('./core/path/src/index')['modelsPath']
1119
450
  const modulesPath: typeof import('./core/path/src/index')['modulesPath']
1120
451
  const money: typeof import('./core/utils/src/currency')['money']
1121
- const move: typeof import('./core/arrays/src/index')['move']
452
+ const move: typeof import('./core/arrays/src/helpers')['move']
1122
453
  const multiply: typeof import('./core/utils/src/currency')['multiply']
1123
454
  const nexmo: typeof import('./core/sms/src/index')['nexmo']
1124
455
  const nextTick: typeof import('vue')['nextTick']
@@ -1132,11 +463,15 @@ declare module 'vue' {
1132
463
  const notUndefined: typeof import('./core/utils/src/guards')['notUndefined']
1133
464
  const notification: typeof import('../config/notification')['default']
1134
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']
1135
469
  const objectEntries: typeof import('./core/objects/src/index')['objectEntries']
1136
470
  const objectKeys: typeof import('./core/objects/src/index')['objectKeys']
1137
471
  const objectMap: typeof import('./core/objects/src/index')['objectMap']
1138
472
  const objectPick: typeof import('./core/objects/src/index')['objectPick']
1139
473
  const objectsPath: typeof import('./core/path/src/index')['objectsPath']
474
+ const off: typeof import('./core/events/src/index')['off']
1140
475
  const ok: typeof import('./core/error-handling/src/index')['ok']
1141
476
  const okAsync: typeof import('./core/error-handling/src/index')['okAsync']
1142
477
  const onActivated: typeof import('vue')['onActivated']
@@ -1164,13 +499,17 @@ declare module 'vue' {
1164
499
  const onboardingPath: typeof import('./core/path/src/index')['onboardingPath']
1165
500
  const or: typeof import('./core/utils/src/math')['or']
1166
501
  const ormPath: typeof import('./core/path/src/index')['ormPath']
502
+ const outro: typeof import('./core/cli/src/helpers')['outro']
1167
503
  const p: typeof import('./core/utils/src/p')['p']
1168
504
  const packageJsonPath: typeof import('./core/path/src/index')['packageJsonPath']
1169
505
  const pagesPath: typeof import('./core/path/src/index')['pagesPath']
1170
506
  const paramCase: typeof import('./core/strings/src/case')['paramCase']
1171
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']
1172
511
  const parseYaml: typeof import('./core/utils/src/helpers')['parseYaml']
1173
- const partition: typeof import('./core/arrays/src/index')['partition']
512
+ const partition: typeof import('./core/arrays/src/helpers')['partition']
1174
513
  const pascalCase: typeof import('./core/strings/src/case')['pascalCase']
1175
514
  const path: typeof import('./core/path/src/index')['path']
1176
515
  const pathCase: typeof import('./core/strings/src/case')['pathCase']
@@ -1180,9 +519,12 @@ declare module 'vue' {
1180
519
  const perPage: typeof import('./core/search-engine/src/index')['perPage']
1181
520
  const plivo: typeof import('./core/sms/src/index')['plivo']
1182
521
  const plural: typeof import('./core/strings/src/pluralize')['plural']
1183
- const preferredDark: typeof import('../functions/dark')['preferredDark']
522
+ const preferredDark: typeof import('../resources/functions/dark')['preferredDark']
1184
523
  const presetForms: typeof import('@stacksjs/ui')['presetForms']
524
+ const projectConfigPath: typeof import('./core/path/src/index')['projectConfigPath']
1185
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']
1186
528
  const provide: typeof import('vue')['provide']
1187
529
  const pushPath: typeof import('./core/path/src/index')['pushPath']
1188
530
  const query: typeof import('./core/search-engine/src/index')['query']
@@ -1190,27 +532,34 @@ declare module 'vue' {
1190
532
  const queuePath: typeof import('./core/path/src/index')['queuePath']
1191
533
  const rand: typeof import('./core/utils/src/math')['rand']
1192
534
  const randomStr: typeof import('./core/strings/src/utils')['randomStr']
1193
- const range: typeof import('./core/arrays/src/index')['range']
535
+ const range: typeof import('./core/arrays/src/helpers')['range']
1194
536
  const reactive: typeof import('vue')['reactive']
1195
537
  const readJsonFile: typeof import('./core/storage/src/index')['readJsonFile']
1196
538
  const readPackageJson: typeof import('./core/storage/src/index')['readPackageJson']
1197
539
  const readTextFile: typeof import('./core/storage/src/index')['readTextFile']
1198
540
  const readonly: typeof import('vue')['readonly']
1199
541
  const realtimePath: typeof import('./core/path/src/index')['realtimePath']
542
+ const red: typeof import('./core/cli/src/utilities')['red']
1200
543
  const redis: typeof import('./core/cache/src/index')['redis']
1201
544
  const ref: typeof import('vue')['ref']
1202
545
  const relative: typeof import('./core/path/src/index')['relative']
1203
- const remove: typeof import('./core/arrays/src/index')['remove']
546
+ const remove: typeof import('./core/arrays/src/helpers')['remove']
1204
547
  const renderHeadToString: typeof import('./core/utils/src/vendors')['renderHeadToString']
548
+ const reset: typeof import('./core/cli/src/utilities')['reset']
1205
549
  const resolve: typeof import('./core/path/src/index')['resolve']
1206
550
  const resolveComponent: typeof import('vue')['resolveComponent']
551
+ const resourcesPath: typeof import('./core/path/src/index')['resourcesPath']
1207
552
  const results: typeof import('./core/search-engine/src/index')['results']
1208
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']
1209
556
  const routerPath: typeof import('./core/path/src/index')['routerPath']
1210
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']
1211
560
  const runNpmScript: typeof import('./core/utils/src/helpers')['runNpmScript']
1212
561
  const runtimePath: typeof import('./core/path/src/index')['runtimePath']
1213
- const sample: typeof import('./core/arrays/src/index')['sample']
562
+ const sample: typeof import('./core/arrays/src/helpers')['sample']
1214
563
  const schedulerPath: typeof import('./core/path/src/index')['schedulerPath']
1215
564
  const scriptsPath: typeof import('./core/path/src/index')['scriptsPath']
1216
565
  const searchEngine: typeof import('../config/search-engine')['default']
@@ -1232,30 +581,41 @@ declare module 'vue' {
1232
581
  const shallowReactive: typeof import('vue')['shallowReactive']
1233
582
  const shallowReadonly: typeof import('vue')['shallowReadonly']
1234
583
  const shallowRef: typeof import('vue')['shallowRef']
1235
- 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']
1236
586
  const signalsPath: typeof import('./core/path/src/index')['signalsPath']
1237
587
  const singular: typeof import('./core/strings/src/pluralize')['singular']
1238
588
  const slack: typeof import('./core/chat/src/index')['slack']
1239
589
  const slash: typeof import('./core/strings/src/utils')['slash']
1240
590
  const sleep: typeof import('./core/utils/src/promise')['sleep']
1241
591
  const slug: typeof import('./core/strings/src/utils')['slug']
592
+ const slugPath: typeof import('./core/path/src/index')['slugPath']
1242
593
  const sms77: typeof import('./core/sms/src/index')['sms77']
1243
594
  const smsPath: typeof import('./core/path/src/index')['smsPath']
1244
595
  const snakeCase: typeof import('./core/strings/src/case')['snakeCase']
1245
596
  const sns: typeof import('./core/sms/src/index')['sns']
1246
597
  const sort: typeof import('./core/search-engine/src/index')['sort']
1247
598
  const sorts: typeof import('./core/search-engine/src/index')['sorts']
1248
- 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']
1249
603
  const stacksPath: typeof import('./core/path/src/index')['stacksPath']
604
+ const startSpinner: typeof import('./core/cli/src/helpers')['startSpinner']
1250
605
  const storage: typeof import('../config/storage')['default']
1251
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']
1252
611
  const stringsPath: typeof import('./core/path/src/index')['stringsPath']
1253
612
  const stripe: typeof import('./core/payments/src/index')['stripe']
1254
613
  const subtract: typeof import('./core/utils/src/currency')['subtract']
1255
614
  const suite: typeof import('vitest')['suite']
615
+ const sum: typeof import('./core/arrays/src/math')['sum']
1256
616
  const syncRef: typeof import('./core/utils/src/vendors')['syncRef']
1257
617
  const syncRefs: typeof import('./core/utils/src/vendors')['syncRefs']
1258
- const tablesPath: typeof import('./core/path/src/index')['tablesPath']
618
+ const tailwindConfig: typeof import('./core/notifications/src/tailwind.config')['default']
1259
619
  const tap: typeof import('./core/utils/src/function')['tap']
1260
620
  const teams: typeof import('./core/chat/src/index')['teams']
1261
621
  const telnyx: typeof import('./core/sms/src/index')['telnyx']
@@ -1268,8 +628,9 @@ declare module 'vue' {
1268
628
  const throttle: typeof import('./core/utils/src/throttle')['throttle']
1269
629
  const throttledRef: typeof import('./core/utils/src/vendors')['throttledRef']
1270
630
  const throttledWatch: typeof import('./core/utils/src/vendors')['throttledWatch']
631
+ const tick: typeof import('./core/signals/src/index')['tick']
1271
632
  const titleCase: typeof import('./core/strings/src/case')['titleCase']
1272
- const toArray: typeof import('./core/arrays/src/index')['toArray']
633
+ const toArray: typeof import('./core/arrays/src/helpers')['toArray']
1273
634
  const toDecimal: typeof import('./core/utils/src/currency')['toDecimal']
1274
635
  const toNamespacedPath: typeof import('./core/path/src/index')['toNamespacedPath']
1275
636
  const toRaw: typeof import('vue')['toRaw']
@@ -1279,11 +640,13 @@ declare module 'vue' {
1279
640
  const toSnapshot: typeof import('./core/utils/src/currency')['toSnapshot']
1280
641
  const toString: typeof import('./core/utils/src/base')['toString']
1281
642
  const toUnits: typeof import('./core/utils/src/currency')['toUnits']
1282
- const toggleDark: typeof import('../functions/dark')['toggleDark']
643
+ const toValue: typeof import('vue')['toValue']
644
+ const toggleDark: typeof import('../resources/functions/dark')['toggleDark']
1283
645
  const totalPages: typeof import('./core/search-engine/src/index')['totalPages']
1284
646
  const transformerCompileClass: typeof import('@stacksjs/ui')['transformerCompileClass']
1285
647
  const triggerRef: typeof import('vue')['triggerRef']
1286
648
  const trimScale: typeof import('./core/utils/src/currency')['trimScale']
649
+ const truncate: typeof import('./core/strings/src/utils')['truncate']
1287
650
  const tryOnBeforeMount: typeof import('./core/utils/src/vendors')['tryOnBeforeMount']
1288
651
  const tryOnBeforeUnmount: typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']
1289
652
  const tryOnMounted: typeof import('./core/utils/src/vendors')['tryOnMounted']
@@ -1293,8 +656,10 @@ declare module 'vue' {
1293
656
  const typesPath: typeof import('./core/path/src/index')['typesPath']
1294
657
  const ui: typeof import('../config/ui')['default']
1295
658
  const uiPath: typeof import('./core/path/src/index')['uiPath']
1296
- const uniq: typeof import('./core/arrays/src/index')['uniq']
1297
- 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']
1298
663
  const unit: typeof import('./core/testing/src/index')['unit']
1299
664
  const unref: typeof import('vue')['unref']
1300
665
  const unrefElement: typeof import('./core/utils/src/vendors')['unrefElement']
@@ -1344,9 +709,11 @@ declare module 'vue' {
1344
709
  const useElementSize: typeof import('./core/utils/src/vendors')['useElementSize']
1345
710
  const useElementVisibility: typeof import('./core/utils/src/vendors')['useElementVisibility']
1346
711
  const useEmail: typeof import('./core/notifications/src/index')['useEmail']
712
+ const useEvent: typeof import('./core/events/src/index')['useEvent']
1347
713
  const useEventBus: typeof import('./core/utils/src/vendors')['useEventBus']
1348
714
  const useEventListener: typeof import('./core/utils/src/vendors')['useEventListener']
1349
715
  const useEventSource: typeof import('./core/utils/src/vendors')['useEventSource']
716
+ const useEvents: typeof import('./core/events/src/index')['useEvents']
1350
717
  const useEyeDropper: typeof import('./core/utils/src/vendors')['useEyeDropper']
1351
718
  const useFavicon: typeof import('./core/utils/src/vendors')['useFavicon']
1352
719
  const useFetch: typeof import('./core/utils/src/vendors')['useFetch']
@@ -1455,11 +822,14 @@ declare module 'vue' {
1455
822
  const useWindowFocus: typeof import('./core/utils/src/vendors')['useWindowFocus']
1456
823
  const useWindowScroll: typeof import('./core/utils/src/vendors')['useWindowScroll']
1457
824
  const useWindowSize: typeof import('./core/utils/src/vendors')['useWindowSize']
1458
- const userConfigPath: typeof import('./core/path/src/index')['userConfigPath']
1459
825
  const utilsPath: typeof import('./core/path/src/index')['utilsPath']
1460
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']
1461
830
  const validateUsername: typeof import('./core/validation/src/is')['validateUsername']
1462
831
  const validationPath: typeof import('./core/path/src/index')['validationPath']
832
+ const validator: typeof import('./core/validation/src/validate')['validator']
1463
833
  const verifyHash: typeof import('./core/security/src/hash')['verifyHash']
1464
834
  const vi: typeof import('vitest')['vi']
1465
835
  const vitest: typeof import('vitest')['vitest']
@@ -1479,19 +849,875 @@ declare module 'vue' {
1479
849
  const watchTriggerable: typeof import('./core/utils/src/vendors')['watchTriggerable']
1480
850
  const watchWithFilter: typeof import('./core/utils/src/vendors')['watchWithFilter']
1481
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']
1482
855
  const writeJsonFile: typeof import('./core/storage/src/index')['writeJsonFile']
1483
856
  const writeTextFile: typeof import('./core/storage/src/index')['writeTextFile']
1484
857
  const xRayPath: typeof import('./core/path/src/index')['xRayPath']
1485
- const z: typeof import('./core/validation/src/validate')['z']
858
+ const yellow: typeof import('./core/cli/src/utilities')['yellow']
1486
859
  }
1487
860
  // for type re-export
1488
861
  declare global {
1489
862
  // @ts-ignore
1490
863
  export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
1491
864
  }
1492
- // for vue template auto import
1493
- import { UnwrapRef } from 'vue'
1494
- 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' {
1495
1721
  interface ComponentCustomProperties {
1496
1722
  readonly $$: UnwrapRef<typeof import('vue/macros')['$$']>
1497
1723
  readonly $: UnwrapRef<typeof import('vue/macros')['$']>
@@ -1500,20 +1726,29 @@ declare module 'vue' {
1500
1726
  readonly $ref: UnwrapRef<typeof import('vue/macros')['$ref']>
1501
1727
  readonly $shallowRef: UnwrapRef<typeof import('vue/macros')['$shallowRef']>
1502
1728
  readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
1503
- 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']>
1504
1731
  readonly Collection: UnwrapRef<typeof import('./core/objects/src/index')['Collection']>
1505
1732
  readonly CssEngine: UnwrapRef<typeof import('@stacksjs/ui')['CssEngine']>
1506
1733
  readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
1507
1734
  readonly Err: UnwrapRef<typeof import('./core/error-handling/src/index')['Err']>
1735
+ readonly ExitCode: UnwrapRef<typeof import('./core/cli/src/index')['ExitCode']>
1508
1736
  readonly Head: UnwrapRef<typeof import('./core/utils/src/vendors')['Head']>
1509
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']>
1510
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']>
1511
1744
  readonly Result: UnwrapRef<typeof import('./core/error-handling/src/index')['Result']>
1512
1745
  readonly ResultAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['ResultAsync']>
1513
1746
  readonly Router: UnwrapRef<typeof import('./core/router/src/index')['Router']>
1514
1747
  readonly Store: UnwrapRef<typeof import('@stacksjs/ui')['Store']>
1515
- 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']>
1516
1750
  readonly UiEngine: UnwrapRef<typeof import('@stacksjs/ui')['UiEngine']>
1751
+ readonly Validator: UnwrapRef<typeof import('./core/validation/src/validate')['Validator']>
1517
1752
  readonly _dirname: UnwrapRef<typeof import('./core/storage/src/index')['_dirname']>
1518
1753
  readonly actionsPath: UnwrapRef<typeof import('./core/path/src/index')['actionsPath']>
1519
1754
  readonly add: UnwrapRef<typeof import('./core/utils/src/currency')['add']>
@@ -1525,17 +1760,24 @@ declare module 'vue' {
1525
1760
  readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
1526
1761
  readonly aiPath: UnwrapRef<typeof import('./core/path/src/index')['aiPath']>
1527
1762
  readonly aliasPath: UnwrapRef<typeof import('./core/path/src/index')['aliasPath']>
1763
+ readonly all: UnwrapRef<typeof import('./core/events/src/index')['all']>
1528
1764
  readonly allocate: UnwrapRef<typeof import('./core/utils/src/currency')['allocate']>
1529
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']>
1530
1768
  readonly app: UnwrapRef<typeof import('../config/app')['default']>
1531
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']>
1532
1772
  readonly arraysPath: UnwrapRef<typeof import('./core/path/src/index')['arraysPath']>
1533
1773
  readonly assert: UnwrapRef<typeof import('vitest')['assert']>
1534
1774
  readonly asyncComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['asyncComputed']>
1535
- readonly at: UnwrapRef<typeof import('./core/arrays/src/index')['at']>
1775
+ readonly at: UnwrapRef<typeof import('./core/arrays/src/helpers')['at']>
1536
1776
  readonly auth: UnwrapRef<typeof import('./core/auth/src/index')['auth']>
1537
1777
  readonly authPath: UnwrapRef<typeof import('./core/path/src/index')['authPath']>
1538
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']>
1539
1781
  readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
1540
1782
  readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
1541
1783
  readonly basename: UnwrapRef<typeof import('./core/path/src/index')['basename']>
@@ -1544,6 +1786,26 @@ declare module 'vue' {
1544
1786
  readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
1545
1787
  readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
1546
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']>
1547
1809
  readonly breakpointsAntDesign: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsAntDesign']>
1548
1810
  readonly breakpointsBootstrapV5: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']>
1549
1811
  readonly breakpointsMasterCss: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsMasterCss']>
@@ -1552,19 +1814,18 @@ declare module 'vue' {
1552
1814
  readonly breakpointsTailwind: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsTailwind']>
1553
1815
  readonly breakpointsVuetify: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsVuetify']>
1554
1816
  readonly buildEnginePath: UnwrapRef<typeof import('./core/path/src/index')['buildEnginePath']>
1555
- readonly buildEntriesPath: UnwrapRef<typeof import('./core/path/src/index')['buildEntriesPath']>
1556
1817
  readonly buildPath: UnwrapRef<typeof import('./core/path/src/index')['buildPath']>
1557
1818
  readonly cache: UnwrapRef<typeof import('../config/cache')['default']>
1558
1819
  readonly cachePath: UnwrapRef<typeof import('./core/path/src/index')['cachePath']>
1559
1820
  readonly calculatePagination: UnwrapRef<typeof import('./core/search-engine/src/index')['calculatePagination']>
1560
1821
  readonly camelCase: UnwrapRef<typeof import('./core/strings/src/case')['camelCase']>
1561
1822
  readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/case')['capitalCase']>
1562
- readonly capitalize: UnwrapRef<typeof import('./core/strings/src/utils')['capitalize']>
1823
+ readonly capitalize: UnwrapRef<typeof import('./core/strings/src/case')['capitalize']>
1563
1824
  readonly cdn: UnwrapRef<typeof import('../config/cdn')['default']>
1564
1825
  readonly chai: UnwrapRef<typeof import('vitest')['chai']>
1565
1826
  readonly chatPath: UnwrapRef<typeof import('./core/path/src/index')['chatPath']>
1566
1827
  readonly clamp: UnwrapRef<typeof import('./core/utils/src/math')['clamp']>
1567
- readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/index')['clampArrayRange']>
1828
+ readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/helpers')['clampArrayRange']>
1568
1829
  readonly clearUndefined: UnwrapRef<typeof import('./core/objects/src/index')['clearUndefined']>
1569
1830
  readonly cli: UnwrapRef<typeof import('../config/cli')['default']>
1570
1831
  readonly cliPath: UnwrapRef<typeof import('./core/path/src/index')['cliPath']>
@@ -1573,27 +1834,29 @@ declare module 'vue' {
1573
1834
  readonly cloudPath: UnwrapRef<typeof import('./core/path/src/index')['cloudPath']>
1574
1835
  readonly collect: UnwrapRef<typeof import('./core/objects/src/index')['collect']>
1575
1836
  readonly collectionsPath: UnwrapRef<typeof import('./core/path/src/index')['collectionsPath']>
1837
+ readonly command: UnwrapRef<typeof import('./core/cli/src/command')['command']>
1576
1838
  readonly compare: UnwrapRef<typeof import('./core/utils/src/currency')['compare']>
1577
1839
  readonly componentsPath: UnwrapRef<typeof import('./core/path/src/index')['componentsPath']>
1578
1840
  readonly computed: UnwrapRef<typeof import('vue')['computed']>
1579
1841
  readonly computedAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['computedAsync']>
1580
1842
  readonly computedEager: UnwrapRef<typeof import('./core/utils/src/vendors')['computedEager']>
1581
1843
  readonly computedInject: UnwrapRef<typeof import('./core/utils/src/vendors')['computedInject']>
1844
+ readonly computedSignal: UnwrapRef<typeof import('./core/signals/src/index')['computedSignal']>
1582
1845
  readonly computedWithControl: UnwrapRef<typeof import('./core/utils/src/vendors')['computedWithControl']>
1583
- readonly config: UnwrapRef<typeof import('./core/notifications/src/tailwind.config')['config']>
1846
+ readonly config: UnwrapRef<typeof import('./core/utils/src/config')['config']>
1584
1847
  readonly configPath: UnwrapRef<typeof import('./core/path/src/index')['configPath']>
1585
1848
  readonly constantCase: UnwrapRef<typeof import('./core/strings/src/case')['constantCase']>
1586
- readonly contains: UnwrapRef<typeof import('./core/arrays/src/index')['contains']>
1587
- readonly containsAll: UnwrapRef<typeof import('./core/arrays/src/index')['containsAll']>
1588
- readonly containsAny: UnwrapRef<typeof import('./core/arrays/src/index')['containsAny']>
1589
- readonly containsNone: UnwrapRef<typeof import('./core/arrays/src/index')['containsNone']>
1590
- 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']>
1591
1854
  readonly controlledComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledComputed']>
1592
1855
  readonly controlledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledRef']>
1593
1856
  readonly convert: UnwrapRef<typeof import('./core/utils/src/currency')['convert']>
1594
1857
  readonly copyFolder: UnwrapRef<typeof import('./core/storage/src/index')['copyFolder']>
1595
1858
  readonly corePath: UnwrapRef<typeof import('./core/path/src/index')['corePath']>
1596
- readonly count: UnwrapRef<typeof import('../functions/counter')['count']>
1859
+ readonly count: UnwrapRef<typeof import('../resources/functions/counter')['count']>
1597
1860
  readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
1598
1861
  readonly createControlledPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createControlledPromise']>
1599
1862
  readonly createEventHook: UnwrapRef<typeof import('./core/utils/src/vendors')['createEventHook']>
@@ -1603,6 +1866,7 @@ declare module 'vue' {
1603
1866
  readonly createGlobalState: UnwrapRef<typeof import('./core/utils/src/vendors')['createGlobalState']>
1604
1867
  readonly createHead: UnwrapRef<typeof import('./core/utils/src/vendors')['createHead']>
1605
1868
  readonly createInjectionState: UnwrapRef<typeof import('./core/utils/src/vendors')['createInjectionState']>
1869
+ readonly createMysqlPool: UnwrapRef<typeof import('./core/query-builder/src/kysely')['createMysqlPool']>
1606
1870
  readonly createProjection: UnwrapRef<typeof import('./core/utils/src/math')['createProjection']>
1607
1871
  readonly createPromiseLock: UnwrapRef<typeof import('./core/utils/src/promise')['createPromiseLock']>
1608
1872
  readonly createReactiveFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createReactiveFn']>
@@ -1611,14 +1875,18 @@ declare module 'vue' {
1611
1875
  readonly createSingletonPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createSingletonPromise']>
1612
1876
  readonly createTemplatePromise: UnwrapRef<typeof import('./core/utils/src/vendors')['createTemplatePromise']>
1613
1877
  readonly createUnrefFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createUnrefFn']>
1878
+ readonly currency: UnwrapRef<typeof import('./core/utils/src/currency')['currency']>
1614
1879
  readonly currentPage: UnwrapRef<typeof import('./core/search-engine/src/index')['currentPage']>
1615
1880
  readonly customElementsDataPath: UnwrapRef<typeof import('./core/path/src/index')['customElementsDataPath']>
1616
1881
  readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
1617
1882
  readonly customStorageEventName: UnwrapRef<typeof import('./core/utils/src/vendors')['customStorageEventName']>
1883
+ readonly cyan: UnwrapRef<typeof import('./core/cli/src/utilities')['cyan']>
1618
1884
  readonly dashboardPath: UnwrapRef<typeof import('./core/path/src/index')['dashboardPath']>
1619
1885
  readonly database: UnwrapRef<typeof import('../config/database')['default']>
1620
1886
  readonly databasePath: UnwrapRef<typeof import('./core/path/src/index')['databasePath']>
1621
- 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']>
1622
1890
  readonly debounce: UnwrapRef<typeof import('./core/utils/src/debounce')['debounce']>
1623
1891
  readonly debouncedRef: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedRef']>
1624
1892
  readonly debouncedWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedWatch']>
@@ -1659,53 +1927,58 @@ declare module 'vue' {
1659
1927
  readonly delimiter: UnwrapRef<typeof import('./core/path/src/index')['delimiter']>
1660
1928
  readonly describe: UnwrapRef<typeof import('vitest')['describe']>
1661
1929
  readonly desktopPath: UnwrapRef<typeof import('./core/path/src/index')['desktopPath']>
1662
- readonly detectIndent: UnwrapRef<typeof import('./core/utils/src/helpers')['detectIndent']>
1663
- 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']>
1664
1932
  readonly determineDebugLevel: UnwrapRef<typeof import('./core/utils/src/helpers')['determineDebugLevel']>
1665
1933
  readonly determineResetPreset: UnwrapRef<typeof import('./core/utils/src/helpers')['determineResetPreset']>
1666
1934
  readonly determineState: UnwrapRef<typeof import('./core/search-engine/src/helpers')['determineState']>
1667
1935
  readonly developmentPath: UnwrapRef<typeof import('./core/path/src/index')['developmentPath']>
1936
+ readonly dim: UnwrapRef<typeof import('./core/cli/src/utilities')['dim']>
1668
1937
  readonly dinero: UnwrapRef<typeof import('./core/utils/src/currency')['dinero']>
1669
1938
  readonly dirname: UnwrapRef<typeof import('./core/path/src/index')['dirname']>
1670
1939
  readonly discord: UnwrapRef<typeof import('./core/chat/src/index')['discord']>
1940
+ readonly dispatch: UnwrapRef<typeof import('./core/events/src/index')['dispatch']>
1671
1941
  readonly dns: UnwrapRef<typeof import('../config/dns')['default']>
1942
+ readonly dnsPath: UnwrapRef<typeof import('./core/path/src/index')['dnsPath']>
1672
1943
  readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
1673
1944
  readonly docsPath: UnwrapRef<typeof import('./core/path/src/index')['docsPath']>
1674
1945
  readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
1675
- readonly doesNotContain: UnwrapRef<typeof import('./core/arrays/src/index')['doesNotContain']>
1676
- readonly domainsPath: UnwrapRef<typeof import('./core/path/src/index')['domainsPath']>
1946
+ readonly doesNotContain: UnwrapRef<typeof import('./core/arrays/src/contains')['doesNotContain']>
1677
1947
  readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
1678
- readonly dump: UnwrapRef<typeof import('./core/logging/src/index')['dump']>
1948
+ readonly dump: UnwrapRef<typeof import('@stacksjs/logging')['dump']>
1679
1949
  readonly dynamodb: UnwrapRef<typeof import('./core/cache/src/index')['dynamodb']>
1680
1950
  readonly eagerComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['eagerComputed']>
1951
+ readonly effect: UnwrapRef<typeof import('./core/signals/src/index')['effect']>
1681
1952
  readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
1682
- readonly email: UnwrapRef<typeof import('../config/email')['default']>
1953
+ readonly email: UnwrapRef<typeof import('./core/validation/src/validate')['email']>
1683
1954
  readonly emailPath: UnwrapRef<typeof import('./core/path/src/index')['emailPath']>
1684
1955
  readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
1685
1956
  readonly ensurePrefix: UnwrapRef<typeof import('./core/strings/src/utils')['ensurePrefix']>
1686
1957
  readonly ensureSuffix: UnwrapRef<typeof import('./core/strings/src/utils')['ensureSuffix']>
1687
- readonly env: UnwrapRef<typeof import('./core/utils/src/config')['env']>
1688
- 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']>
1689
1960
  readonly equal: UnwrapRef<typeof import('./core/utils/src/currency')['equal']>
1690
1961
  readonly err: UnwrapRef<typeof import('./core/error-handling/src/index')['err']>
1691
1962
  readonly errAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['errAsync']>
1692
1963
  readonly errorHandlingPath: UnwrapRef<typeof import('./core/path/src/index')['errorHandlingPath']>
1693
1964
  readonly eslint: UnwrapRef<typeof import('./core/lint/src/index')['eslint']>
1694
- readonly events: UnwrapRef<typeof import('../config/events')['default']>
1965
+ readonly events: UnwrapRef<typeof import('./core/events/src/index')['events']>
1695
1966
  readonly eventsPath: UnwrapRef<typeof import('./core/path/src/index')['eventsPath']>
1696
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']>
1697
1970
  readonly executeTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['executeTransition']>
1698
1971
  readonly expect: UnwrapRef<typeof import('vitest')['expect']>
1699
1972
  readonly expo: UnwrapRef<typeof import('./core/push/src/index')['expo']>
1700
1973
  readonly extendRef: UnwrapRef<typeof import('./core/utils/src/vendors')['extendRef']>
1701
1974
  readonly extname: UnwrapRef<typeof import('./core/path/src/index')['extname']>
1975
+ readonly faker: UnwrapRef<typeof import('./core/faker/src/index')['faker']>
1702
1976
  readonly fakerPath: UnwrapRef<typeof import('./core/path/src/index')['fakerPath']>
1703
1977
  readonly fcm: UnwrapRef<typeof import('./core/push/src/index')['fcm']>
1704
1978
  readonly feature: UnwrapRef<typeof import('./core/testing/src/index')['feature']>
1705
- readonly filesystem: UnwrapRef<typeof import('./core/storage/src/index')['filesystem']>
1706
1979
  readonly filterName: UnwrapRef<typeof import('./core/search-engine/src/index')['filterName']>
1707
1980
  readonly filters: UnwrapRef<typeof import('./core/search-engine/src/index')['filters']>
1708
- readonly flattenArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['flattenArrayable']>
1981
+ readonly flatten: UnwrapRef<typeof import('./core/arrays/src/helpers')['flatten']>
1709
1982
  readonly format: UnwrapRef<typeof import('./core/path/src/index')['format']>
1710
1983
  readonly formatTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['formatTimeAgo']>
1711
1984
  readonly frameworkPath: UnwrapRef<typeof import('./core/path/src/index')['frameworkPath']>
@@ -1713,11 +1986,14 @@ declare module 'vue' {
1713
1986
  readonly fromPromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromPromise']>
1714
1987
  readonly fromSafePromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromSafePromise']>
1715
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']>
1716
1991
  readonly functionsPath: UnwrapRef<typeof import('./core/path/src/index')['functionsPath']>
1717
1992
  readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
1718
1993
  readonly generateFactoryFile: UnwrapRef<typeof import('./core/database/src/factory/index')['generateFactoryFile']>
1719
1994
  readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
1720
1995
  readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
1996
+ readonly getEnv: UnwrapRef<typeof import('./core/validation/src/types/env')['getEnv']>
1721
1997
  readonly getSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['getSSRHandler']>
1722
1998
  readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/base')['getTypeName']>
1723
1999
  readonly git: UnwrapRef<typeof import('../config/git')['default']>
@@ -1725,10 +2001,13 @@ declare module 'vue' {
1725
2001
  readonly goToNextPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToNextPage']>
1726
2002
  readonly goToPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPage']>
1727
2003
  readonly goToPrevPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPrevPage']>
2004
+ readonly gray: UnwrapRef<typeof import('./core/cli/src/utilities')['gray']>
1728
2005
  readonly greaterThan: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThan']>
1729
2006
  readonly greaterThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThanOrEqual']>
2007
+ readonly green: UnwrapRef<typeof import('./core/cli/src/utilities')['green']>
1730
2008
  readonly gupshup: UnwrapRef<typeof import('./core/sms/src/index')['gupshup']>
1731
2009
  readonly h: UnwrapRef<typeof import('vue')['h']>
2010
+ readonly handleError: UnwrapRef<typeof import('./core/error-handling/src/index')['handleError']>
1732
2011
  readonly hasComponents: UnwrapRef<typeof import('./core/storage/src/index')['hasComponents']>
1733
2012
  readonly hasFiles: UnwrapRef<typeof import('./core/storage/src/index')['hasFiles']>
1734
2013
  readonly hasFunctions: UnwrapRef<typeof import('./core/storage/src/index')['hasFunctions']>
@@ -1740,11 +2019,17 @@ declare module 'vue' {
1740
2019
  readonly haveSameCurrency: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameCurrency']>
1741
2020
  readonly headerCase: UnwrapRef<typeof import('./core/strings/src/case')['headerCase']>
1742
2021
  readonly healthPath: UnwrapRef<typeof import('./core/path/src/index')['healthPath']>
2022
+ readonly hidden: UnwrapRef<typeof import('./core/cli/src/utilities')['hidden']>
1743
2023
  readonly hits: UnwrapRef<typeof import('./core/search-engine/src/index')['hits']>
1744
2024
  readonly ignorableWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['ignorableWatch']>
1745
- readonly increment: UnwrapRef<typeof import('../functions/counter')['increment']>
2025
+ readonly increment: UnwrapRef<typeof import('../resources/functions/counter')['increment']>
1746
2026
  readonly index: UnwrapRef<typeof import('./core/search-engine/src/index')['index']>
1747
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']>
1748
2033
  readonly isAbsolute: UnwrapRef<typeof import('./core/path/src/index')['isAbsolute']>
1749
2034
  readonly isAlpha: UnwrapRef<typeof import('./core/validation/src/is')['isAlpha']>
1750
2035
  readonly isAlphanumeric: UnwrapRef<typeof import('./core/validation/src/is')['isAlphanumeric']>
@@ -1758,7 +2043,7 @@ declare module 'vue' {
1758
2043
  readonly isByteLength: UnwrapRef<typeof import('./core/validation/src/is')['isByteLength']>
1759
2044
  readonly isCreditCard: UnwrapRef<typeof import('./core/validation/src/is')['isCreditCard']>
1760
2045
  readonly isCurrency: UnwrapRef<typeof import('./core/validation/src/is')['isCurrency']>
1761
- readonly isDark: UnwrapRef<typeof import('../functions/dark')['isDark']>
2046
+ readonly isDark: UnwrapRef<typeof import('../resources/functions/dark')['isDark']>
1762
2047
  readonly isDataURI: UnwrapRef<typeof import('./core/validation/src/is')['isDataURI']>
1763
2048
  readonly isDate: UnwrapRef<typeof import('./core/validation/src/is')['isDate']>
1764
2049
  readonly isDeepEqual: UnwrapRef<typeof import('./core/utils/src/equal')['isDeepEqual']>
@@ -1791,6 +2076,7 @@ declare module 'vue' {
1791
2076
  readonly isIdentityCard: UnwrapRef<typeof import('./core/validation/src/is')['isIdentityCard']>
1792
2077
  readonly isInteger: UnwrapRef<typeof import('./core/validation/src/is')['isInteger']>
1793
2078
  readonly isIntegerOrFloat: UnwrapRef<typeof import('./core/validation/src/is')['isIntegerOrFloat']>
2079
+ readonly isIpv6: UnwrapRef<typeof import('./core/utils/src/helpers')['isIpv6']>
1794
2080
  readonly isJSON: UnwrapRef<typeof import('./core/validation/src/is')['isJSON']>
1795
2081
  readonly isJWT: UnwrapRef<typeof import('./core/validation/src/is')['isJWT']>
1796
2082
  readonly isKeyOf: UnwrapRef<typeof import('./core/objects/src/index')['isKeyOf']>
@@ -1802,7 +2088,7 @@ declare module 'vue' {
1802
2088
  readonly isMap: UnwrapRef<typeof import('./core/validation/src/is')['isMap']>
1803
2089
  readonly isMimeType: UnwrapRef<typeof import('./core/validation/src/is')['isMimeType']>
1804
2090
  readonly isMobilePhone: UnwrapRef<typeof import('./core/validation/src/is')['isMobilePhone']>
1805
- readonly isMongoId: UnwrapRef<typeof import('./core/validation/src/is')['isMongoId']>
2091
+ readonly isMoney: UnwrapRef<typeof import('./core/validation/src/is')['isMoney']>
1806
2092
  readonly isNegative: UnwrapRef<typeof import('./core/validation/src/is')['isNegative']>
1807
2093
  readonly isNull: UnwrapRef<typeof import('./core/validation/src/is')['isNull']>
1808
2094
  readonly isNumber: UnwrapRef<typeof import('./core/validation/src/is')['isNumber']>
@@ -1835,34 +2121,51 @@ declare module 'vue' {
1835
2121
  readonly isWindow: UnwrapRef<typeof import('./core/validation/src/is')['isWindow']>
1836
2122
  readonly isZero: UnwrapRef<typeof import('./core/utils/src/currency')['isZero']>
1837
2123
  readonly it: UnwrapRef<typeof import('vitest')['it']>
2124
+ readonly italic: UnwrapRef<typeof import('./core/cli/src/utilities')['italic']>
1838
2125
  readonly join: UnwrapRef<typeof import('./core/path/src/index')['join']>
1839
2126
  readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/case')['kebabCase']>
1840
2127
  readonly langPath: UnwrapRef<typeof import('./core/path/src/index')['langPath']>
1841
- readonly last: UnwrapRef<typeof import('./core/arrays/src/index')['last']>
2128
+ readonly last: UnwrapRef<typeof import('./core/arrays/src/helpers')['last']>
1842
2129
  readonly lastPageNumber: UnwrapRef<typeof import('./core/search-engine/src/index')['lastPageNumber']>
1843
2130
  readonly lessThan: UnwrapRef<typeof import('./core/utils/src/currency')['lessThan']>
1844
2131
  readonly lessThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['lessThanOrEqual']>
1845
2132
  readonly library: UnwrapRef<typeof import('../config/library')['default']>
1846
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']>
1847
2144
  readonly lintPath: UnwrapRef<typeof import('./core/path/src/index')['lintPath']>
1848
- 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']>
1849
2147
  readonly loggingPath: UnwrapRef<typeof import('./core/path/src/index')['loggingPath']>
1850
2148
  readonly logicNot: UnwrapRef<typeof import('./core/utils/src/math')['logicNot']>
1851
2149
  readonly logicOr: UnwrapRef<typeof import('./core/utils/src/math')['logicOr']>
2150
+ readonly logsPath: UnwrapRef<typeof import('./core/path/src/index')['logsPath']>
1852
2151
  readonly loop: UnwrapRef<typeof import('./core/utils/src/base')['loop']>
2152
+ readonly magenta: UnwrapRef<typeof import('./core/cli/src/utilities')['magenta']>
1853
2153
  readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
1854
2154
  readonly mapGamepadToXbox360Controller: UnwrapRef<typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']>
1855
2155
  readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
1856
2156
  readonly maximum: UnwrapRef<typeof import('./core/utils/src/currency')['maximum']>
1857
2157
  readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
2158
+ readonly median: UnwrapRef<typeof import('./core/arrays/src/math')['median']>
1858
2159
  readonly memcached: UnwrapRef<typeof import('./core/cache/src/index')['memcached']>
1859
- readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/index')['mergeArrayable']>
2160
+ readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/helpers')['mergeArrayable']>
1860
2161
  readonly migrate: UnwrapRef<typeof import('./core/database/src/migrations/index')['migrate']>
1861
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']>
1862
2165
  readonly modelsPath: UnwrapRef<typeof import('./core/path/src/index')['modelsPath']>
1863
2166
  readonly modulesPath: UnwrapRef<typeof import('./core/path/src/index')['modulesPath']>
1864
2167
  readonly money: UnwrapRef<typeof import('./core/utils/src/currency')['money']>
1865
- readonly move: UnwrapRef<typeof import('./core/arrays/src/index')['move']>
2168
+ readonly move: UnwrapRef<typeof import('./core/arrays/src/helpers')['move']>
1866
2169
  readonly multiply: UnwrapRef<typeof import('./core/utils/src/currency')['multiply']>
1867
2170
  readonly nexmo: UnwrapRef<typeof import('./core/sms/src/index')['nexmo']>
1868
2171
  readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
@@ -1876,11 +2179,15 @@ declare module 'vue' {
1876
2179
  readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
1877
2180
  readonly notification: UnwrapRef<typeof import('../config/notification')['default']>
1878
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']>
1879
2185
  readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
1880
2186
  readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
1881
2187
  readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
1882
2188
  readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
1883
2189
  readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
2190
+ readonly off: UnwrapRef<typeof import('./core/events/src/index')['off']>
1884
2191
  readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
1885
2192
  readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
1886
2193
  readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
@@ -1908,13 +2215,17 @@ declare module 'vue' {
1908
2215
  readonly onboardingPath: UnwrapRef<typeof import('./core/path/src/index')['onboardingPath']>
1909
2216
  readonly or: UnwrapRef<typeof import('./core/utils/src/math')['or']>
1910
2217
  readonly ormPath: UnwrapRef<typeof import('./core/path/src/index')['ormPath']>
2218
+ readonly outro: UnwrapRef<typeof import('./core/cli/src/helpers')['outro']>
1911
2219
  readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
1912
2220
  readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
1913
2221
  readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
1914
2222
  readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
1915
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']>
1916
2227
  readonly parseYaml: UnwrapRef<typeof import('./core/utils/src/helpers')['parseYaml']>
1917
- readonly partition: UnwrapRef<typeof import('./core/arrays/src/index')['partition']>
2228
+ readonly partition: UnwrapRef<typeof import('./core/arrays/src/helpers')['partition']>
1918
2229
  readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
1919
2230
  readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
1920
2231
  readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
@@ -1924,9 +2235,12 @@ declare module 'vue' {
1924
2235
  readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
1925
2236
  readonly plivo: UnwrapRef<typeof import('./core/sms/src/index')['plivo']>
1926
2237
  readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
1927
- readonly preferredDark: UnwrapRef<typeof import('../functions/dark')['preferredDark']>
2238
+ readonly preferredDark: UnwrapRef<typeof import('../resources/functions/dark')['preferredDark']>
1928
2239
  readonly presetForms: UnwrapRef<typeof import('@stacksjs/ui')['presetForms']>
2240
+ readonly projectConfigPath: UnwrapRef<typeof import('./core/path/src/index')['projectConfigPath']>
1929
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']>
1930
2244
  readonly provide: UnwrapRef<typeof import('vue')['provide']>
1931
2245
  readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
1932
2246
  readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
@@ -1934,27 +2248,34 @@ declare module 'vue' {
1934
2248
  readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
1935
2249
  readonly rand: UnwrapRef<typeof import('./core/utils/src/math')['rand']>
1936
2250
  readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
1937
- readonly range: UnwrapRef<typeof import('./core/arrays/src/index')['range']>
2251
+ readonly range: UnwrapRef<typeof import('./core/arrays/src/helpers')['range']>
1938
2252
  readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
1939
2253
  readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
1940
2254
  readonly readPackageJson: UnwrapRef<typeof import('./core/storage/src/index')['readPackageJson']>
1941
2255
  readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
1942
2256
  readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
1943
2257
  readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
2258
+ readonly red: UnwrapRef<typeof import('./core/cli/src/utilities')['red']>
1944
2259
  readonly redis: UnwrapRef<typeof import('./core/cache/src/index')['redis']>
1945
2260
  readonly ref: UnwrapRef<typeof import('vue')['ref']>
1946
2261
  readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
1947
- readonly remove: UnwrapRef<typeof import('./core/arrays/src/index')['remove']>
2262
+ readonly remove: UnwrapRef<typeof import('./core/arrays/src/helpers')['remove']>
1948
2263
  readonly renderHeadToString: UnwrapRef<typeof import('./core/utils/src/vendors')['renderHeadToString']>
2264
+ readonly reset: UnwrapRef<typeof import('./core/cli/src/utilities')['reset']>
1949
2265
  readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
1950
2266
  readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
2267
+ readonly resourcesPath: UnwrapRef<typeof import('./core/path/src/index')['resourcesPath']>
1951
2268
  readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
1952
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']>
1953
2272
  readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
1954
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']>
1955
2276
  readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
1956
2277
  readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
1957
- readonly sample: UnwrapRef<typeof import('./core/arrays/src/index')['sample']>
2278
+ readonly sample: UnwrapRef<typeof import('./core/arrays/src/helpers')['sample']>
1958
2279
  readonly schedulerPath: UnwrapRef<typeof import('./core/path/src/index')['schedulerPath']>
1959
2280
  readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
1960
2281
  readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
@@ -1976,30 +2297,40 @@ declare module 'vue' {
1976
2297
  readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
1977
2298
  readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
1978
2299
  readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
1979
- 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']>
1980
2302
  readonly signalsPath: UnwrapRef<typeof import('./core/path/src/index')['signalsPath']>
1981
2303
  readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
1982
2304
  readonly slack: UnwrapRef<typeof import('./core/chat/src/index')['slack']>
1983
2305
  readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
1984
2306
  readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
1985
2307
  readonly slug: UnwrapRef<typeof import('./core/strings/src/utils')['slug']>
2308
+ readonly slugPath: UnwrapRef<typeof import('./core/path/src/index')['slugPath']>
1986
2309
  readonly sms77: UnwrapRef<typeof import('./core/sms/src/index')['sms77']>
1987
2310
  readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
1988
2311
  readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
1989
2312
  readonly sns: UnwrapRef<typeof import('./core/sms/src/index')['sns']>
1990
2313
  readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
1991
2314
  readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
1992
- 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']>
1993
2318
  readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
2319
+ readonly startSpinner: UnwrapRef<typeof import('./core/cli/src/helpers')['startSpinner']>
1994
2320
  readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
1995
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']>
1996
2326
  readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
1997
2327
  readonly stripe: UnwrapRef<typeof import('./core/payments/src/index')['stripe']>
1998
2328
  readonly subtract: UnwrapRef<typeof import('./core/utils/src/currency')['subtract']>
1999
2329
  readonly suite: UnwrapRef<typeof import('vitest')['suite']>
2330
+ readonly sum: UnwrapRef<typeof import('./core/arrays/src/math')['sum']>
2000
2331
  readonly syncRef: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRef']>
2001
2332
  readonly syncRefs: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRefs']>
2002
- readonly tablesPath: UnwrapRef<typeof import('./core/path/src/index')['tablesPath']>
2333
+ readonly tailwindConfig: UnwrapRef<typeof import('./core/notifications/src/tailwind.config')['default']>
2003
2334
  readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
2004
2335
  readonly teams: UnwrapRef<typeof import('./core/chat/src/index')['teams']>
2005
2336
  readonly telnyx: UnwrapRef<typeof import('./core/sms/src/index')['telnyx']>
@@ -2012,8 +2343,9 @@ declare module 'vue' {
2012
2343
  readonly throttle: UnwrapRef<typeof import('./core/utils/src/throttle')['throttle']>
2013
2344
  readonly throttledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledRef']>
2014
2345
  readonly throttledWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledWatch']>
2346
+ readonly tick: UnwrapRef<typeof import('./core/signals/src/index')['tick']>
2015
2347
  readonly titleCase: UnwrapRef<typeof import('./core/strings/src/case')['titleCase']>
2016
- readonly toArray: UnwrapRef<typeof import('./core/arrays/src/index')['toArray']>
2348
+ readonly toArray: UnwrapRef<typeof import('./core/arrays/src/helpers')['toArray']>
2017
2349
  readonly toDecimal: UnwrapRef<typeof import('./core/utils/src/currency')['toDecimal']>
2018
2350
  readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
2019
2351
  readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
@@ -2023,11 +2355,13 @@ declare module 'vue' {
2023
2355
  readonly toSnapshot: UnwrapRef<typeof import('./core/utils/src/currency')['toSnapshot']>
2024
2356
  readonly toString: UnwrapRef<typeof import('./core/utils/src/base')['toString']>
2025
2357
  readonly toUnits: UnwrapRef<typeof import('./core/utils/src/currency')['toUnits']>
2026
- 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']>
2027
2360
  readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
2028
2361
  readonly transformerCompileClass: UnwrapRef<typeof import('@stacksjs/ui')['transformerCompileClass']>
2029
2362
  readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
2030
2363
  readonly trimScale: UnwrapRef<typeof import('./core/utils/src/currency')['trimScale']>
2364
+ readonly truncate: UnwrapRef<typeof import('./core/strings/src/utils')['truncate']>
2031
2365
  readonly tryOnBeforeMount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeMount']>
2032
2366
  readonly tryOnBeforeUnmount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']>
2033
2367
  readonly tryOnMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnMounted']>
@@ -2037,8 +2371,10 @@ declare module 'vue' {
2037
2371
  readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
2038
2372
  readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
2039
2373
  readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
2040
- readonly uniq: UnwrapRef<typeof import('./core/arrays/src/index')['uniq']>
2041
- 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']>
2042
2378
  readonly unit: UnwrapRef<typeof import('./core/testing/src/index')['unit']>
2043
2379
  readonly unref: UnwrapRef<typeof import('vue')['unref']>
2044
2380
  readonly unrefElement: UnwrapRef<typeof import('./core/utils/src/vendors')['unrefElement']>
@@ -2088,9 +2424,11 @@ declare module 'vue' {
2088
2424
  readonly useElementSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementSize']>
2089
2425
  readonly useElementVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementVisibility']>
2090
2426
  readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
2427
+ readonly useEvent: UnwrapRef<typeof import('./core/events/src/index')['useEvent']>
2091
2428
  readonly useEventBus: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventBus']>
2092
2429
  readonly useEventListener: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventListener']>
2093
2430
  readonly useEventSource: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventSource']>
2431
+ readonly useEvents: UnwrapRef<typeof import('./core/events/src/index')['useEvents']>
2094
2432
  readonly useEyeDropper: UnwrapRef<typeof import('./core/utils/src/vendors')['useEyeDropper']>
2095
2433
  readonly useFavicon: UnwrapRef<typeof import('./core/utils/src/vendors')['useFavicon']>
2096
2434
  readonly useFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['useFetch']>
@@ -2199,11 +2537,11 @@ declare module 'vue' {
2199
2537
  readonly useWindowFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowFocus']>
2200
2538
  readonly useWindowScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowScroll']>
2201
2539
  readonly useWindowSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowSize']>
2202
- readonly userConfigPath: UnwrapRef<typeof import('./core/path/src/index')['userConfigPath']>
2203
2540
  readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
2204
2541
  readonly validate: UnwrapRef<typeof import('./core/validation/src/validate')['validate']>
2205
2542
  readonly validateUsername: UnwrapRef<typeof import('./core/validation/src/is')['validateUsername']>
2206
2543
  readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
2544
+ readonly validator: UnwrapRef<typeof import('./core/validation/src/validate')['validator']>
2207
2545
  readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
2208
2546
  readonly vi: UnwrapRef<typeof import('vitest')['vi']>
2209
2547
  readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
@@ -2223,9 +2561,12 @@ declare module 'vue' {
2223
2561
  readonly watchTriggerable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchTriggerable']>
2224
2562
  readonly watchWithFilter: UnwrapRef<typeof import('./core/utils/src/vendors')['watchWithFilter']>
2225
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']>
2226
2567
  readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
2227
2568
  readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
2228
2569
  readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
2229
- readonly z: UnwrapRef<typeof import('./core/validation/src/validate')['z']>
2570
+ readonly yellow: UnwrapRef<typeof import('./core/cli/src/utilities')['yellow']>
2230
2571
  }
2231
2572
  }