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