stacks 0.56.24 → 0.58.18
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/buddy +2 -0
- package/core/.env +38 -0
- package/core/.simple-git-hooks.js +3 -0
- package/core/Caddyfile +23 -0
- package/core/README.md +415 -0
- package/core/buddy +2 -0
- package/core/env.ts +42 -0
- package/core/playwright.config.ts +109 -0
- package/core/scripts/build +84 -0
- package/core/scripts/ensure +33 -0
- package/core/scripts/fresh +14 -0
- package/core/scripts/link +14 -0
- package/core/scripts/move-built-src-files.ts +28 -0
- package/core/scripts/move-dts-files.ts +35 -0
- package/core/scripts/publish +37 -0
- package/core/scripts/setup +176 -0
- package/core/src/actions/README.md +58 -0
- package/core/src/actions/build.ts +5 -0
- package/core/src/actions/dist/src/add.js +29 -0
- package/core/src/actions/dist/src/build/component-libs.js +6 -0
- package/core/src/actions/dist/src/build/core.js +25 -0
- package/core/src/actions/dist/src/build/stacks.js +8 -0
- package/core/src/actions/dist/src/build.js +226 -0
- package/core/src/actions/dist/src/bump.js +8 -0
- package/core/src/actions/dist/src/changelog.js +9 -0
- package/core/src/actions/dist/src/clean.js +6 -0
- package/core/src/actions/dist/src/commit.js +17 -0
- package/core/src/actions/dist/src/copy-types.js +14 -0
- package/core/src/actions/dist/src/database/seed.js +4 -0
- package/core/src/actions/dist/src/deploy/index.js +31 -0
- package/core/src/actions/dist/src/dev/components.js +11 -0
- package/core/src/actions/dist/src/dev/docs.js +7 -0
- package/core/src/actions/dist/src/dev/index.js +90 -0
- package/core/src/actions/dist/src/examples.js +43 -0
- package/core/src/actions/dist/src/fresh.js +18 -0
- package/core/src/actions/dist/src/generate/component-meta.js +57 -0
- package/core/src/actions/dist/src/generate/ide-helpers.js +83 -0
- package/core/src/actions/dist/src/generate/index.js +161 -0
- package/core/src/actions/dist/src/generate/lib-entries.js +168 -0
- package/core/src/actions/dist/src/generate/vscode-custom-data.js +82 -0
- package/core/src/actions/dist/src/generate/vue-compat.js +18 -0
- package/core/src/actions/dist/src/helpers/component-meta.js +50 -0
- package/core/src/actions/dist/src/helpers/index.js +56 -0
- package/core/src/actions/dist/src/helpers/lib-entries.js +160 -0
- package/core/src/actions/dist/src/helpers/package-json.js +135 -0
- package/core/src/actions/dist/src/helpers/utils.js +56 -0
- package/core/src/actions/dist/src/helpers/vscode-custom-data.js +75 -0
- package/core/src/actions/dist/src/helpers/vue-compat.js +16 -0
- package/core/src/actions/dist/src/index.js +577 -0
- package/core/src/actions/dist/src/key-generate.js +10 -0
- package/core/src/actions/dist/src/lint/fix.js +8 -0
- package/core/src/actions/dist/src/lint/index.js +21 -0
- package/core/src/actions/dist/src/make.js +291 -0
- package/core/src/actions/dist/src/prepublish.js +14 -0
- package/core/src/actions/dist/src/release.js +545 -0
- package/core/src/actions/dist/src/test/coverage.js +6 -0
- package/core/src/actions/dist/src/test/feature.js +6 -0
- package/core/src/actions/dist/src/test/ui.js +6 -0
- package/core/src/actions/dist/src/test/unit.js +6 -0
- package/core/src/actions/dist/src/test.js +6 -0
- package/core/src/actions/dist/src/tinker.js +5 -0
- package/core/src/actions/dist/src/typecheck.js +6 -0
- package/core/src/actions/dist/src/types.js +21 -0
- package/core/src/actions/dist/src/upgrade/dependencies.js +6 -0
- package/core/src/actions/dist/src/upgrade/framework.js +1 -0
- package/core/src/actions/dist/src/upgrade/index.js +1 -0
- package/core/src/actions/dist/src/upgrade.js +39 -0
- package/core/src/actions/package.json +89 -0
- package/core/src/actions/src/action.ts +11 -0
- package/core/src/actions/src/actions.ts +2 -0
- package/core/src/actions/src/add.ts +27 -0
- package/core/src/actions/src/ai/request-model-access.ts +74 -0
- package/core/src/actions/src/build/component-libs.ts +5 -0
- package/core/src/actions/src/build/core.ts +66 -0
- package/core/src/actions/src/build/desktop.ts +7 -0
- package/core/src/actions/src/build/stacks.ts +7 -0
- package/core/src/actions/src/build.ts +89 -0
- package/core/src/actions/src/bump.ts +11 -0
- package/core/src/actions/src/cdn/invalidate-cache.ts +27 -0
- package/core/src/actions/src/changelog.ts +11 -0
- package/core/src/actions/src/clean.ts +6 -0
- package/core/src/actions/src/commit.ts +14 -0
- package/core/src/actions/src/copy-types.ts +22 -0
- package/core/src/actions/src/database/fields.ts +111 -0
- package/core/src/actions/src/database/migration-mysql.ts +72 -0
- package/core/src/actions/src/database/migration-sqlite.ts +67 -0
- package/core/src/actions/src/database/migration.ts +10 -0
- package/core/src/actions/src/database/mydb.sqlite +0 -0
- package/core/src/actions/src/database/seed.ts +4 -0
- package/core/src/actions/src/database/stacks.sqlite +0 -0
- package/core/src/actions/src/database/user-migration.ts +20 -0
- package/core/src/actions/src/deploy/create-receipt-rule.ts +55 -0
- package/core/src/actions/src/deploy/index.ts +46 -0
- package/core/src/actions/src/dev/api.ts +19 -0
- package/core/src/actions/src/dev/components.ts +14 -0
- package/core/src/actions/src/dev/desktop.ts +7 -0
- package/core/src/actions/src/dev/docs.ts +7 -0
- package/core/src/actions/src/dev/index.ts +38 -0
- package/core/src/actions/src/dev/views.ts +7 -0
- package/core/src/actions/src/domains/add.ts +82 -0
- package/core/src/actions/src/domains/purchase.ts +76 -0
- package/core/src/actions/src/domains/remove.ts +38 -0
- package/core/src/actions/src/examples.ts +46 -0
- package/core/src/actions/src/fresh.ts +20 -0
- package/core/src/actions/src/generate/caddyfile.ts +1 -0
- package/core/src/actions/src/generate/component-meta.ts +15 -0
- package/core/src/actions/src/generate/env-files.ts +89 -0
- package/core/src/actions/src/generate/ide-helpers.ts +20 -0
- package/core/src/actions/src/generate/index.ts +141 -0
- package/core/src/actions/src/generate/lib-entries.ts +17 -0
- package/core/src/actions/src/generate/model-classes.ts +299 -0
- package/core/src/actions/src/generate/model-generate.ts +12 -0
- package/core/src/actions/src/generate/pkgx-file.ts +72 -0
- package/core/src/actions/src/generate/vscode-custom-data.ts +16 -0
- package/core/src/actions/src/generate/vue-compat.ts +10 -0
- package/core/src/actions/src/helpers/component-meta.ts +93 -0
- package/core/src/actions/src/helpers/index.ts +1 -0
- package/core/src/actions/src/helpers/lib-entries.ts +139 -0
- package/core/src/actions/src/helpers/package-json.ts +96 -0
- package/core/src/actions/src/helpers/utils.ts +82 -0
- package/core/src/actions/src/helpers/vscode-custom-data.ts +28 -0
- package/core/src/actions/src/helpers/vue-compat.ts +16 -0
- package/core/src/actions/src/index.ts +29 -0
- package/core/src/actions/src/key-generate.ts +10 -0
- package/core/src/actions/src/lint/fix.ts +7 -0
- package/core/src/actions/src/lint/index.ts +19 -0
- package/core/src/actions/src/make.ts +322 -0
- package/core/src/actions/src/migrate/database.ts +1 -0
- package/core/src/actions/src/migrate/dns.ts +3 -0
- package/core/src/actions/src/prepublish.ts +17 -0
- package/core/src/actions/src/release.ts +15 -0
- package/core/src/actions/src/start-caddy.ts +13 -0
- package/core/src/actions/src/test/coverage.ts +5 -0
- package/core/src/actions/src/test/feature.ts +5 -0
- package/core/src/actions/src/test/ui.ts +5 -0
- package/core/src/actions/src/test/unit.ts +5 -0
- package/core/src/actions/src/test.ts +5 -0
- package/core/src/actions/src/tinker.ts +10 -0
- package/core/src/actions/src/typecheck.ts +5 -0
- package/core/src/actions/src/types.ts +20 -0
- package/core/src/actions/src/upgrade/bun.ts +4 -0
- package/core/src/actions/src/upgrade/framework.ts +30 -0
- package/core/src/actions/src/upgrade/index.ts +25 -0
- package/core/src/actions/src/upgrade.ts +65 -0
- package/core/src/actions/src/zip/api.ts +22 -0
- package/core/src/actions/tests/example.test.ts +5 -0
- package/core/src/ai/README.md +67 -0
- package/core/src/ai/build.ts +9 -0
- package/core/src/ai/package.json +59 -0
- package/core/src/ai/src/index.ts +8 -0
- package/core/src/ai/src/text-generation.ts +0 -0
- package/core/src/ai/src/text-summary.ts +0 -0
- package/core/src/ai/src/utils/client-bedrock-runtime.ts +38 -0
- package/core/src/ai/src/utils/client-bedrock.ts +53 -0
- package/core/src/ai/tests/example.test.ts +5 -0
- package/core/src/alias/README.md +53 -0
- package/core/src/alias/build.ts +8 -0
- package/core/src/alias/dist/index.js +218 -0
- package/core/src/alias/package.json +51 -0
- package/core/src/alias/src/index.ts +220 -0
- package/core/src/alias/tests/example.test.ts +5 -0
- package/core/src/analytics/README.md +55 -0
- package/core/src/analytics/build.ts +8 -0
- package/core/src/analytics/dist/index.js +5 -0
- package/core/src/analytics/package.json +54 -0
- package/core/src/analytics/src/drivers/fathom.ts +1 -0
- package/core/src/analytics/src/drivers/index.ts +1 -0
- package/core/src/analytics/src/index.ts +1 -0
- package/core/src/analytics/tests/example.test.ts +5 -0
- package/core/src/api/build.ts +7 -0
- package/core/src/api/package.json +61 -0
- package/core/src/api/src/index.ts +114 -0
- package/core/src/arrays/README.md +59 -0
- package/core/src/arrays/build.ts +8 -0
- package/core/src/arrays/dist/index.js +469 -0
- package/core/src/arrays/package.json +59 -0
- package/core/src/arrays/src/arr.ts +3 -0
- package/core/src/arrays/src/contains.ts +87 -0
- package/core/src/arrays/src/helpers.ts +272 -0
- package/core/src/arrays/src/index.ts +3 -0
- package/core/src/arrays/src/macro.ts +131 -0
- package/core/src/arrays/src/math.ts +220 -0
- package/core/src/arrays/tests/example.test.ts +5 -0
- package/core/src/auth/README.md +59 -0
- package/core/src/auth/build.ts +8 -0
- package/core/src/auth/dist/index.js +5 -0
- package/core/src/auth/package.json +50 -0
- package/core/src/auth/tests/example.test.ts +5 -0
- package/core/src/bud +2 -0
- package/core/src/buddy/README.md +390 -0
- package/core/src/buddy/art/social.jpg +0 -0
- package/core/src/buddy/build.ts +8 -0
- package/core/src/buddy/dist/chunk-815e657d8c6ba584.js +1677 -0
- package/core/src/buddy/dist/chunk-b75e6db0012faa55.js +22 -0
- package/core/src/buddy/dist/cli.js +49 -0
- package/core/src/buddy/dist/index.js +70 -0
- package/core/src/buddy/package.json +174 -0
- package/core/src/buddy/src/cli.ts +51 -0
- package/core/src/buddy/src/commands/add.ts +65 -0
- package/core/src/buddy/src/commands/build.ts +172 -0
- package/core/src/buddy/src/commands/changelog.ts +36 -0
- package/core/src/buddy/src/commands/clean.ts +34 -0
- package/core/src/buddy/src/commands/cloud.ts +299 -0
- package/core/src/buddy/src/commands/commit.ts +22 -0
- package/core/src/buddy/src/commands/configure.ts +65 -0
- package/core/src/buddy/src/commands/create.ts +131 -0
- package/core/src/buddy/src/commands/deploy.ts +99 -0
- package/core/src/buddy/src/commands/dev.ts +228 -0
- package/core/src/buddy/src/commands/dns.ts +78 -0
- package/core/src/buddy/src/commands/domains.ts +156 -0
- package/core/src/buddy/src/commands/example.ts +62 -0
- package/core/src/buddy/src/commands/fresh.ts +34 -0
- package/core/src/buddy/src/commands/generate.ts +142 -0
- package/core/src/buddy/src/commands/http.ts +53 -0
- package/core/src/buddy/src/commands/index.ts +30 -0
- package/core/src/buddy/src/commands/inspire.ts +24 -0
- package/core/src/buddy/src/commands/install.ts +26 -0
- package/core/src/buddy/src/commands/key.ts +32 -0
- package/core/src/buddy/src/commands/lint.ts +49 -0
- package/core/src/buddy/src/commands/make.ts +259 -0
- package/core/src/buddy/src/commands/migrate.ts +55 -0
- package/core/src/buddy/src/commands/prepublish.ts +23 -0
- package/core/src/buddy/src/commands/release.ts +33 -0
- package/core/src/buddy/src/commands/seed.ts +36 -0
- package/core/src/buddy/src/commands/setup.ts +116 -0
- package/core/src/buddy/src/commands/test.ts +122 -0
- package/core/src/buddy/src/commands/tinker.ts +34 -0
- package/core/src/buddy/src/commands/types.ts +30 -0
- package/core/src/buddy/src/commands/upgrade.ts +109 -0
- package/core/src/buddy/src/commands/version.ts +24 -0
- package/core/src/buddy/src/compile.ts +9 -0
- package/core/src/build/README.md +59 -0
- package/core/src/build/build.ts +8 -0
- package/core/src/build/dist/index.js +19 -0
- package/core/src/build/package.json +63 -0
- package/core/src/build/src/index.ts +11 -0
- package/core/src/build/tests/example.test.ts +5 -0
- package/core/src/build/web-types.ts +15 -0
- package/core/src/bun-create/bud/README.md +45 -0
- package/core/src/bun-create/bud/package.json +152 -0
- package/core/src/bun-create/buddy/README.md +45 -0
- package/core/src/bun-create/buddy/package.json +152 -0
- package/core/src/bun-create/stack/README.md +45 -0
- package/core/src/bun-create/stack/package.json +152 -0
- package/core/src/bun-create/stacks/README.md +45 -0
- package/core/src/bun-create/stacks/package.json +152 -0
- package/core/src/bun-create/stx/README.md +45 -0
- package/core/src/bun-create/stx/package.json +152 -0
- package/core/src/bun-plugin-yaml/README.md +56 -0
- package/core/src/bun-plugin-yaml/build.ts +8 -0
- package/core/src/bun-plugin-yaml/dist/index.js +2781 -0
- package/core/src/bun-plugin-yaml/package.json +57 -0
- package/core/src/bun-plugin-yaml/src/index.ts +22 -0
- package/core/src/bun-plugin-yaml/tests/example.test.ts +5 -0
- package/core/src/cache/README.md +59 -0
- package/core/src/cache/build.ts +8 -0
- package/core/src/cache/dist/index.js +88 -0
- package/core/src/cache/package.json +65 -0
- package/core/src/cache/src/drivers/index.ts +2 -0
- package/core/src/cache/src/drivers/redis.ts +37 -0
- package/core/src/cache/src/index.ts +1 -0
- package/core/src/cache/tests/DynamoDB.test.ts +135 -0
- package/core/src/cache/tests/Memcached.test.ts +51 -0
- package/core/src/cache/tests/Redis.test.ts +84 -0
- package/core/src/chat/README.md +83 -0
- package/core/src/chat/build.ts +8 -0
- package/core/src/chat/dist/index.js +42 -0
- package/core/src/chat/package.json +73 -0
- package/core/src/chat/tests/example.test.ts +5 -0
- package/core/src/cli/README.md +168 -0
- package/core/src/cli/build.ts +8 -0
- package/core/src/cli/dist/index.js +372 -0
- package/core/src/cli/package.json +90 -0
- package/core/src/cli/src/actions/install.ts +40 -0
- package/core/src/cli/src/cli.ts +52 -0
- package/core/src/cli/src/command.ts +47 -0
- package/core/src/cli/src/console.ts +79 -0
- package/core/src/cli/src/exec.ts +89 -0
- package/core/src/cli/src/helpers.ts +90 -0
- package/core/src/cli/src/index.ts +10 -0
- package/core/src/cli/src/parse.ts +101 -0
- package/core/src/cli/src/run.ts +97 -0
- package/core/src/cli/src/utilities.ts +2 -0
- package/core/src/cli/tests/example.test.ts +5 -0
- package/core/src/cloud/README.md +67 -0
- package/core/src/cloud/build-server.ts +8 -0
- package/core/src/cloud/build.ts +8 -0
- package/core/src/cloud/cdk.json +62 -0
- package/core/src/cloud/deploy.ts +75 -0
- package/core/src/cloud/dist/origin-request.js +27 -0
- package/core/src/cloud/package.json +119 -0
- package/core/src/cloud/src/cloud/ai.ts +115 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package-lock.json +386 -0
- package/core/src/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +15 -0
- package/core/src/cloud/src/cloud/cache.ts +0 -0
- package/core/src/cloud/src/cloud/cdn.ts +335 -0
- package/core/src/cloud/src/cloud/compute.ts +79 -0
- package/core/src/cloud/src/cloud/dashboard.ts +85 -0
- package/core/src/cloud/src/cloud/database.ts +0 -0
- package/core/src/cloud/src/cloud/deployment.ts +41 -0
- package/core/src/cloud/src/cloud/dns.ts +34 -0
- package/core/src/cloud/src/cloud/docs.ts +51 -0
- package/core/src/cloud/src/cloud/email.ts +339 -0
- package/core/src/cloud/src/cloud/file-system.ts +35 -0
- package/core/src/cloud/src/cloud/index.ts +93 -0
- package/core/src/cloud/src/cloud/jump-box.ts +48 -0
- package/core/src/cloud/src/cloud/lambda/ask/index.js +35 -0
- package/core/src/cloud/src/cloud/lambda/summarize/index.js +35 -0
- package/core/src/cloud/src/cloud/network.ts +52 -0
- package/core/src/cloud/src/cloud/permissions.ts +33 -0
- package/core/src/cloud/src/cloud/queue.ts +0 -0
- package/core/src/cloud/src/cloud/redirects.ts +45 -0
- package/core/src/cloud/src/cloud/search-engine.ts +108 -0
- package/core/src/cloud/src/cloud/security.ts +259 -0
- package/core/src/cloud/src/cloud/storage.ts +168 -0
- package/core/src/cloud/src/edge/origin-request.ts +49 -0
- package/core/src/cloud/src/helpers.ts +597 -0
- package/core/src/cloud/src/index.ts +2 -0
- package/core/src/cloud/src/runtime/README.md +116 -0
- package/core/src/cloud/src/runtime/bootstrap +3 -0
- package/core/src/cloud/src/runtime/example/lambda.ts +36 -0
- package/core/src/cloud/src/runtime/runtime.ts +829 -0
- package/core/src/cloud/src/runtime/scripts/build-layer.ts +104 -0
- package/core/src/cloud/src/runtime/scripts/publish-layer.ts +110 -0
- package/core/src/cloud/src/runtime/server.ts +39 -0
- package/core/src/cloud/src/server/.dockerignore +15 -0
- package/core/src/cloud/src/server/Dockerfile +20 -0
- package/core/src/cloud/src/server/index.ts +39 -0
- package/core/src/cloud/src/server/package.json +12 -0
- package/core/src/cloud/src/server/runtime.ts +828 -0
- package/core/src/cloud/src/types.ts +28 -0
- package/core/src/cloud/tests/example.test.ts +5 -0
- package/core/src/cloud/zip.ts +8 -0
- package/core/src/collections/README.md +71 -0
- package/core/src/collections/build.ts +8 -0
- package/core/src/collections/dist/index.js +6 -0
- package/core/src/collections/package.json +57 -0
- package/core/src/collections/tests/example.test.ts +5 -0
- package/core/src/config/README.md +71 -0
- package/core/src/config/build.ts +8 -0
- package/core/src/config/dist/index.js +1670 -0
- package/core/src/config/package.json +55 -0
- package/core/src/config/src/config.ts +38 -0
- package/core/src/config/src/defaults.ts +460 -0
- package/core/src/config/src/helpers.ts +256 -0
- package/core/src/config/src/index.ts +2 -0
- package/core/src/config/src/overrides.ts +49 -0
- package/core/src/config/tests/example.test.ts +5 -0
- package/core/src/database/README.md +59 -0
- package/core/src/database/build.ts +8 -0
- package/core/src/database/dist/index.js +200 -0
- package/core/src/database/package.json +78 -0
- package/core/src/database/src/index.ts +63 -0
- package/core/src/database/src/kysely-bun-worker/driver.ts +143 -0
- package/core/src/database/src/kysely-bun-worker/index.ts +46 -0
- package/core/src/database/src/kysely-bun-worker/mitt.ts +24 -0
- package/core/src/database/src/kysely-bun-worker/type.ts +40 -0
- package/core/src/database/src/kysely-bun-worker/worker.ts +53 -0
- package/core/src/database/src/migrations/index.ts +73 -0
- package/core/src/database/src/seeder/index.ts +79 -0
- package/core/src/database/tests/example.test.ts +5 -0
- package/core/src/datetime/README.md +66 -0
- package/core/src/datetime/build.ts +8 -0
- package/core/src/datetime/dist/index.js +9 -0
- package/core/src/datetime/package.json +56 -0
- package/core/src/datetime/tests/example.test.ts +5 -0
- package/core/src/desktop/README.md +49 -0
- package/core/src/desktop/build.ts +8 -0
- package/core/src/desktop/dist/index.js +3075 -0
- package/core/src/desktop/package.json +84 -0
- package/core/src/desktop/src/index.ts +41 -0
- package/core/src/desktop/tests/example.test.ts +5 -0
- package/core/src/development/README.md +27 -0
- package/core/src/development/build.ts +8 -0
- package/core/src/development/dist/index.js +6 -0
- package/core/src/development/package.json +77 -0
- package/core/src/development/src/index.ts +0 -0
- package/core/src/development/tests/example.test.ts +5 -0
- package/core/src/dns/README.md +56 -0
- package/core/src/dns/build.ts +8 -0
- package/core/src/dns/dist/index.js +166 -0
- package/core/src/dns/package.json +76 -0
- package/core/src/dns/src/drivers/aws.ts +224 -0
- package/core/src/dns/src/index.ts +20 -0
- package/core/src/dns/tests/example.test.ts +5 -0
- package/core/src/docs/README.md +59 -0
- package/core/src/docs/build.ts +8 -0
- package/core/src/docs/dist/index.js +214608 -0
- package/core/src/docs/package.json +68 -0
- package/core/src/docs/src/index.ts +61 -0
- package/core/src/docs/src/plugins.ts +4 -0
- package/core/src/docs/tests/example.test.ts +5 -0
- package/core/src/email/README.md +155 -0
- package/core/src/email/build-inbound.ts +8 -0
- package/core/src/email/build.ts +8 -0
- package/core/src/email/dist/index.js +325 -0
- package/core/src/email/email-forwarder.cjs +406 -0
- package/core/src/email/email-forwarder.zip +0 -0
- package/core/src/email/package.json +94 -0
- package/core/src/email/src/drivers/emailjs.ts +23 -0
- package/core/src/email/src/drivers/index.ts +9 -0
- package/core/src/email/src/drivers/mailgun.ts +21 -0
- package/core/src/email/src/drivers/mailjet.ts +21 -0
- package/core/src/email/src/drivers/mandrill.ts +19 -0
- package/core/src/email/src/drivers/netcore.ts +19 -0
- package/core/src/email/src/drivers/nodemailer.ts +23 -0
- package/core/src/email/src/drivers/postmark.ts +19 -0
- package/core/src/email/src/drivers/sendgrid.ts +20 -0
- package/core/src/email/src/drivers/ses.ts +22 -0
- package/core/src/email/src/index.ts +1 -0
- package/core/src/email/src/send.ts +37 -0
- package/core/src/email/src/server/converter.ts +304 -0
- package/core/src/email/src/server/inbound.ts +389 -0
- package/core/src/email/src/server/outbound.ts +294 -0
- package/core/src/email/tests/example.test.ts +5 -0
- package/core/src/enums/README.md +54 -0
- package/core/src/enums/build.ts +8 -0
- package/core/src/enums/dist/index.js +98 -0
- package/core/src/enums/package.json +50 -0
- package/core/src/enums/src/index.ts +95 -0
- package/core/src/enums/tests/example.test.ts +5 -0
- package/core/src/env/README.md +71 -0
- package/core/src/env/build.ts +8 -0
- package/core/src/env/dist/index.js +221 -0
- package/core/src/env/package.json +55 -0
- package/core/src/env/src/index.ts +76 -0
- package/core/src/env/src/types.ts +54 -0
- package/core/src/env/tests/example.test.ts +5 -0
- package/core/src/error-handling/README.md +131 -0
- package/core/src/error-handling/build.ts +8 -0
- package/core/src/error-handling/dist/index.js +432 -0
- package/core/src/error-handling/package.json +62 -0
- package/core/src/error-handling/src/handler.ts +51 -0
- package/core/src/error-handling/src/index.ts +2 -0
- package/core/src/error-handling/tests/example.test.ts +5 -0
- package/core/src/eslint-config/.gitattributes +2 -0
- package/core/src/eslint-config/README.md +587 -0
- package/core/src/eslint-config/build.ts +8 -0
- package/core/src/eslint-config/package.json +119 -0
- package/core/src/eslint-config/src/configs/comments.ts +19 -0
- package/core/src/eslint-config/src/configs/formatters.ts +187 -0
- package/core/src/eslint-config/src/configs/ignores.ts +10 -0
- package/core/src/eslint-config/src/configs/imports.ts +37 -0
- package/core/src/eslint-config/src/configs/index.ts +21 -0
- package/core/src/eslint-config/src/configs/javascript.ts +226 -0
- package/core/src/eslint-config/src/configs/jsdoc.ts +42 -0
- package/core/src/eslint-config/src/configs/jsonc.ts +86 -0
- package/core/src/eslint-config/src/configs/markdown.ts +110 -0
- package/core/src/eslint-config/src/configs/node.ts +23 -0
- package/core/src/eslint-config/src/configs/perfectionist.ts +18 -0
- package/core/src/eslint-config/src/configs/react.ts +111 -0
- package/core/src/eslint-config/src/configs/sort.ts +223 -0
- package/core/src/eslint-config/src/configs/stylistic.ts +57 -0
- package/core/src/eslint-config/src/configs/svelte.ts +106 -0
- package/core/src/eslint-config/src/configs/test.ts +54 -0
- package/core/src/eslint-config/src/configs/toml.ts +72 -0
- package/core/src/eslint-config/src/configs/typescript.ts +156 -0
- package/core/src/eslint-config/src/configs/unicorn.ts +41 -0
- package/core/src/eslint-config/src/configs/unocss.ts +43 -0
- package/core/src/eslint-config/src/configs/vue.ts +169 -0
- package/core/src/eslint-config/src/configs/yaml.ts +72 -0
- package/core/src/eslint-config/src/factory.ts +260 -0
- package/core/src/eslint-config/src/globs.ts +92 -0
- package/core/src/eslint-config/src/index.ts +9 -0
- package/core/src/eslint-config/src/plugins.ts +10 -0
- package/core/src/eslint-config/src/stub.d.ts +3 -0
- package/core/src/eslint-config/src/types.ts +366 -0
- package/core/src/eslint-config/src/utils.ts +72 -0
- package/core/src/eslint-config/src/vendor/prettier-types.ts +136 -0
- package/core/src/eslint-config/test/cli.spec.ts +90 -0
- package/core/src/eslint-config/test/fixtures.test.ts +125 -0
- package/core/src/eslint-config/tsconfig.json +17 -0
- package/core/src/eslint-config/tsup.config.ts +8 -0
- package/core/src/events/README.md +76 -0
- package/core/src/events/build.ts +8 -0
- package/core/src/events/dist/index.js +63 -0
- package/core/src/events/package.json +52 -0
- package/core/src/events/src/index.ts +170 -0
- package/core/src/events/tests/example.test.ts +5 -0
- package/core/src/faker/README.md +53 -0
- package/core/src/faker/build.ts +8 -0
- package/core/src/faker/dist/index.js +6 -0
- package/core/src/faker/package.json +61 -0
- package/core/src/faker/tests/example.test.ts +5 -0
- package/core/src/git/README.md +65 -0
- package/core/src/git/build.ts +8 -0
- package/core/src/git/dist/index.js +6 -0
- package/core/src/git/package.json +68 -0
- package/core/src/git/src/index.ts +1 -0
- package/core/src/git/tests/example.test.ts +5 -0
- package/core/src/health/README.md +56 -0
- package/core/src/health/build.ts +8 -0
- package/core/src/health/dist/index.js +9 -0
- package/core/src/health/package.json +58 -0
- package/core/src/health/src/drivers/index.ts +1 -0
- package/core/src/health/src/drivers/ohdear.ts +1 -0
- package/core/src/health/src/index.ts +2 -0
- package/core/src/health/src/notifications/index.ts +1 -0
- package/core/src/health/tests/example.test.ts +5 -0
- package/core/src/http/README.md +59 -0
- package/core/src/http/build.ts +8 -0
- package/core/src/http/dist/index.js +65 -0
- package/core/src/http/package.json +52 -0
- package/core/src/http/src/index.ts +71 -0
- package/core/src/index.ts +57 -0
- package/core/src/lint/.eslintrc.json +3 -0
- package/core/src/lint/README.md +73 -0
- package/core/src/lint/build.ts +8 -0
- package/core/src/lint/dist/index.js +6 -0
- package/core/src/lint/package.json +69 -0
- package/core/src/lint/tests/example.test.ts +5 -0
- package/core/src/logging/README.md +58 -0
- package/core/src/logging/build.ts +8 -0
- package/core/src/logging/dist/index.js +1809 -0
- package/core/src/logging/package.json +61 -0
- package/core/src/logging/src/index.ts +27 -0
- package/core/src/logging/tests/example.test.ts +5 -0
- package/core/src/music/package.json +46 -0
- package/core/src/music/src/components/SampleComponent.stx +5 -0
- package/core/src/music/src/layouts/default.stx +3 -0
- package/core/src/music/src/pages/index.stx +10 -0
- package/core/src/music/src/pages/music.stx +10 -0
- package/core/src/music/src/styles/main.css +1 -0
- package/core/src/notifications/README.md +272 -0
- package/core/src/notifications/build.ts +8 -0
- package/core/src/notifications/dist/index.js +54 -0
- package/core/src/notifications/package.json +103 -0
- package/core/src/notifications/src/drivers/index.ts +4 -0
- package/core/src/notifications/src/index.ts +51 -0
- package/core/src/notifications/src/tailwind.config.ts +39 -0
- package/core/src/notifications/src/utils/config.ts +5 -0
- package/core/src/notifications/tests/chat/Slack.test.ts +34 -0
- package/core/src/notifications/tests/email/Mailgun.test.ts +40 -0
- package/core/src/notifications/tests/email/Sendgrid.test.ts +40 -0
- package/core/src/notifications/tests/sms/Twilio.test.ts +37 -0
- package/core/src/objects/README.md +71 -0
- package/core/src/objects/build.ts +8 -0
- package/core/src/objects/dist/index.js +64 -0
- package/core/src/objects/package.json +63 -0
- package/core/src/objects/src/index.ts +145 -0
- package/core/src/objects/tests/example.test.ts +5 -0
- package/core/src/orm/README.md +48 -0
- package/core/src/orm/build.ts +8 -0
- package/core/src/orm/dist/index.js +6 -0
- package/core/src/orm/package.json +59 -0
- package/core/src/orm/src/index.ts +49 -0
- package/core/src/orm/tests/example.test.ts +5 -0
- package/core/src/path/README.md +64 -0
- package/core/src/path/build.ts +8 -0
- package/core/src/path/dist/index.js +495 -0
- package/core/src/path/package.json +54 -0
- package/core/src/path/src/index.ts +529 -0
- package/core/src/path/tests/example.test.ts +5 -0
- package/core/src/payments/README.md +64 -0
- package/core/src/payments/build.ts +8 -0
- package/core/src/payments/dist/index.js +6261 -0
- package/core/src/payments/package.json +60 -0
- package/core/src/payments/src/drivers/stripe.ts +116 -0
- package/core/src/payments/tests/example.test.ts +5 -0
- package/core/src/push/README.md +71 -0
- package/core/src/push/build.ts +9 -0
- package/core/src/push/package.json +64 -0
- package/core/src/push/src/drivers/expo.ts +21 -0
- package/core/src/push/src/drivers/fcm.ts +21 -0
- package/core/src/push/src/drivers/index.ts +2 -0
- package/core/src/push/src/index.ts +1 -0
- package/core/src/push/tests/example.test.ts +5 -0
- package/core/src/query-builder/README.md +48 -0
- package/core/src/query-builder/build.ts +8 -0
- package/core/src/query-builder/dist/index.js +18 -0
- package/core/src/query-builder/package.json +59 -0
- package/core/src/query-builder/src/kysely.ts +38 -0
- package/core/src/query-builder/tests/example.test.ts +5 -0
- package/core/src/queue/README.md +59 -0
- package/core/src/queue/build.ts +8 -0
- package/core/src/queue/dist/index.js +19 -0
- package/core/src/queue/package.json +55 -0
- package/core/src/queue/src/index.ts +17 -0
- package/core/src/queue/tests/example.test.ts +5 -0
- package/core/src/realtime/README.md +59 -0
- package/core/src/realtime/build.ts +8 -0
- package/core/src/realtime/dist/index.js +6 -0
- package/core/src/realtime/package.json +52 -0
- package/core/src/realtime/src/drivers/index.ts +1 -0
- package/core/src/realtime/src/index.ts +1 -0
- package/core/src/realtime/tests/example.test.ts +5 -0
- package/core/src/repl/README.md +53 -0
- package/core/src/repl/build.ts +8 -0
- package/core/src/repl/dist/index.js +6 -0
- package/core/src/repl/package.json +59 -0
- package/core/src/repl/tests/example.test.ts +5 -0
- package/core/src/router/README.md +59 -0
- package/core/src/router/build.ts +8 -0
- package/core/src/router/dist/index.js +841 -0
- package/core/src/router/package.json +62 -0
- package/core/src/router/src/index.ts +4 -0
- package/core/src/router/src/middleware.ts +34 -0
- package/core/src/router/src/request.ts +44 -0
- package/core/src/router/src/router.ts +162 -0
- package/core/src/router/src/server.ts +154 -0
- package/core/src/router/tests/example.test.ts +5 -0
- package/core/src/scheduler/README.md +137 -0
- package/core/src/scheduler/build.ts +8 -0
- package/core/src/scheduler/dist/index.js +208 -0
- package/core/src/scheduler/package.json +56 -0
- package/core/src/scheduler/src/index.ts +321 -0
- package/core/src/scheduler/tests/example.test.ts +5 -0
- package/core/src/search-engine/README.md +66 -0
- package/core/src/search-engine/build.ts +8 -0
- package/core/src/search-engine/dist/index.js +89 -0
- package/core/src/search-engine/package.json +67 -0
- package/core/src/search-engine/src/drivers/index.ts +1 -0
- package/core/src/search-engine/src/drivers/meilisearch.ts +124 -0
- package/core/src/search-engine/src/drivers/opensearch.ts +59 -0
- package/core/src/search-engine/src/helpers.ts +138 -0
- package/core/src/search-engine/src/index.ts +69 -0
- package/core/src/search-engine/tests/example.test.ts +5 -0
- package/core/src/security/README.md +66 -0
- package/core/src/security/build.ts +8 -0
- package/core/src/security/dist/index.js +3288 -0
- package/core/src/security/package.json +65 -0
- package/core/src/security/src/crypt.ts +23 -0
- package/core/src/security/src/hash.ts +54 -0
- package/core/src/security/src/key.ts +11 -0
- package/core/src/security/tests/example.test.ts +5 -0
- package/core/src/server/README.md +51 -0
- package/core/src/server/build.ts +8 -0
- package/core/src/server/dist/index.js +48 -0
- package/core/src/server/package.json +67 -0
- package/core/src/server/src/api.ts +5 -0
- package/core/src/server/src/config.ts +59 -0
- package/core/src/server/src/index.ts +1 -0
- package/core/src/server/tests/example.test.ts +5 -0
- package/core/src/signals/README.md +105 -0
- package/core/src/signals/build.ts +8 -0
- package/core/src/signals/dist/index.js +9 -0
- package/core/src/signals/package.json +63 -0
- package/core/src/signals/tests/example.test.ts +5 -0
- package/core/src/slug/README.md +59 -0
- package/core/src/slug/build.ts +8 -0
- package/core/src/slug/dist/index.js +5 -0
- package/core/src/slug/package.json +65 -0
- package/core/src/slug/src/index.ts +56 -0
- package/core/src/slug/tests/example.test.ts +5 -0
- package/core/src/sms/README.md +137 -0
- package/core/src/sms/build.ts +9 -0
- package/core/src/sms/package.json +82 -0
- package/core/src/sms/src/drivers/index.ts +8 -0
- package/core/src/sms/src/index.ts +1 -0
- package/core/src/sms/tests/example.test.ts +5 -0
- package/core/src/storage/README.md +74 -0
- package/core/src/storage/build.ts +8 -0
- package/core/src/storage/dist/index.js +798 -0
- package/core/src/storage/package.json +77 -0
- package/core/src/storage/src/copy.ts +42 -0
- package/core/src/storage/src/delete.ts +131 -0
- package/core/src/storage/src/drivers/aws.ts +15 -0
- package/core/src/storage/src/drivers/index.ts +1 -0
- package/core/src/storage/src/files.ts +182 -0
- package/core/src/storage/src/folders.ts +51 -0
- package/core/src/storage/src/fs.ts +9 -0
- package/core/src/storage/src/glob.ts +1 -0
- package/core/src/storage/src/hash.ts +39 -0
- package/core/src/storage/src/helpers.ts +29 -0
- package/core/src/storage/src/index.ts +11 -0
- package/core/src/storage/src/move.ts +84 -0
- package/core/src/storage/src/storage.ts +10 -0
- package/core/src/storage/src/visibility.ts +6 -0
- package/core/src/storage/src/zip.ts +55 -0
- package/core/src/storage/tests/example.test.ts +5 -0
- package/core/src/strings/README.md +137 -0
- package/core/src/strings/build.ts +9 -0
- package/core/src/strings/dist/index.js +393 -0
- package/core/src/strings/package.json +81 -0
- package/core/src/strings/src/case.ts +27 -0
- package/core/src/strings/src/helpers.ts +3 -0
- package/core/src/strings/src/index.ts +2 -0
- package/core/src/strings/src/macro.ts +131 -0
- package/core/src/strings/src/pluralize.ts +26 -0
- package/core/src/strings/src/string.ts +5 -0
- package/core/src/strings/src/types.ts +4 -0
- package/core/src/strings/src/utils.ts +117 -0
- package/core/src/strings/tests/example.test.ts +5 -0
- package/core/src/tables/README.md +110 -0
- package/core/src/tables/examples/vue/App.stx +12 -0
- package/core/src/tables/examples/vue/favicon.png +0 -0
- package/core/src/tables/examples/vue/index.html +20 -0
- package/core/src/tables/examples/web/favicon.png +0 -0
- package/core/src/tables/examples/web/index.html +13 -0
- package/core/src/tables/package.json +57 -0
- package/core/src/tables/src/App.stx +23 -0
- package/core/src/tables/src/components/README.md +109 -0
- package/core/src/tables/src/components/Table.stx +342 -0
- package/core/src/tables/src/components/TableBody.stx +32 -0
- package/core/src/tables/src/components/TableFilters.stx +704 -0
- package/core/src/tables/src/components/TableHead.stx +60 -0
- package/core/src/tables/src/components/TablePagination.stx +131 -0
- package/core/src/tables/src/components/TableRow.stx +73 -0
- package/core/src/tables/src/components/TableSearch.stx +39 -0
- package/core/src/tables/src/components/Tooltip.stx +10 -0
- package/core/src/tables/src/components.d.ts +24 -0
- package/core/src/tables/src/config/tables.ts +2 -0
- package/core/src/tables/src/docs/index.md +0 -0
- package/core/src/tables/src/main.ts +4 -0
- package/core/src/tables/tests/example.test.ts +5 -0
- package/core/src/tables/vite.config.ts +84 -0
- package/core/src/testing/README.md +59 -0
- package/core/src/testing/build.ts +8 -0
- package/core/src/testing/dist/index.js +6 -0
- package/core/src/testing/package.json +62 -0
- package/core/src/testing/src/index.ts +3 -0
- package/core/src/tinker/package.json +46 -0
- package/core/src/tunnel/README.md +53 -0
- package/core/src/tunnel/build.ts +8 -0
- package/core/src/tunnel/dist/index.js +10 -0
- package/core/src/tunnel/package.json +57 -0
- package/core/src/tunnel/src/index.ts +6 -0
- package/core/src/tunnel/tests/example.test.ts +5 -0
- package/core/src/types/README.md +59 -0
- package/core/src/types/build.ts +8 -0
- package/core/src/types/dist/index.js +501 -0
- package/core/src/types/package.json +86 -0
- package/core/src/types/src/ai.ts +25 -0
- package/core/src/types/src/analytics.ts +21 -0
- package/core/src/types/src/api.ts +63 -0
- package/core/src/types/src/app.ts +172 -0
- package/core/src/types/src/binary.ts +12 -0
- package/core/src/types/src/cache.ts +98 -0
- package/core/src/types/src/cdn.ts +17 -0
- package/core/src/types/src/chat.ts +5 -0
- package/core/src/types/src/cli.ts +305 -0
- package/core/src/types/src/cloud.ts +82 -0
- package/core/src/types/src/components.ts +64 -0
- package/core/src/types/src/configure.ts +6 -0
- package/core/src/types/src/cron-jobs.ts +44 -0
- package/core/src/types/src/database.ts +45 -0
- package/core/src/types/src/dependencies.ts +69 -0
- package/core/src/types/src/deploy.ts +13 -0
- package/core/src/types/src/dns.ts +186 -0
- package/core/src/types/src/docs.ts +22 -0
- package/core/src/types/src/email.ts +16 -0
- package/core/src/types/src/env.ts +1 -0
- package/core/src/types/src/errors.ts +11 -0
- package/core/src/types/src/events.ts +30 -0
- package/core/src/types/src/file-systems.ts +70 -0
- package/core/src/types/src/git.ts +133 -0
- package/core/src/types/src/hashing.ts +131 -0
- package/core/src/types/src/helpers.ts +11 -0
- package/core/src/types/src/index.ts +58 -0
- package/core/src/types/src/layout.ts +8 -0
- package/core/src/types/src/library.ts +154 -0
- package/core/src/types/src/model.ts +72 -0
- package/core/src/types/src/money.ts +3 -0
- package/core/src/types/src/notifications.ts +147 -0
- package/core/src/types/src/payments.ts +65 -0
- package/core/src/types/src/push.ts +36 -0
- package/core/src/types/src/queue.ts +36 -0
- package/core/src/types/src/router.ts +70 -0
- package/core/src/types/src/scheduler.ts +1 -0
- package/core/src/types/src/search-engine.ts +136 -0
- package/core/src/types/src/security.ts +23 -0
- package/core/src/types/src/services.ts +44 -0
- package/core/src/types/src/sms.ts +5 -0
- package/core/src/types/src/ssg.ts +3 -0
- package/core/src/types/src/stacks.ts +236 -0
- package/core/src/types/src/storage.ts +13 -0
- package/core/src/types/src/team.ts +8 -0
- package/core/src/types/src/ui.ts +197 -0
- package/core/src/types/src/utils.ts +47 -0
- package/core/src/ui/README.md +66 -0
- package/core/src/ui/build.ts +8 -0
- package/core/src/ui/dist/components.js +68 -0
- package/core/src/ui/dist/index.js +69 -0
- package/core/src/ui/package.json +91 -0
- package/core/src/ui/src/components/autocomplete.ts +0 -0
- package/core/src/ui/src/components/disclosure.ts +5 -0
- package/core/src/ui/src/components/menu.ts +1 -0
- package/core/src/ui/src/components/modal.ts +6 -0
- package/core/src/ui/src/components/popover.ts +1 -0
- package/core/src/ui/src/components/radio-group.ts +5 -0
- package/core/src/ui/src/components/select.ts +6 -0
- package/core/src/ui/src/components/tabs.ts +1 -0
- package/core/src/ui/src/components/toggle.ts +1 -0
- package/core/src/ui/src/components/transition.ts +1 -0
- package/core/src/ui/src/components.ts +10 -0
- package/core/src/ui/src/index.ts +15 -0
- package/core/src/ui/src/uno.config.ts +64 -0
- package/core/src/ui/tests/example.test.ts +5 -0
- package/core/src/utils/build.ts +8 -0
- package/core/src/utils/dist/index.js +1276 -0
- package/core/src/utils/package.json +110 -0
- package/core/src/utils/scripts/export-size.ts +94 -0
- package/core/src/utils/src/base.ts +12 -0
- package/core/src/utils/src/clean.ts +17 -0
- package/core/src/utils/src/config.ts +25 -0
- package/core/src/utils/src/delete.ts +1 -0
- package/core/src/utils/src/equal.ts +27 -0
- package/core/src/utils/src/export-size.ts +1 -0
- package/core/src/utils/src/git.ts +11 -0
- package/core/src/utils/src/glob.ts +1 -0
- package/core/src/utils/src/hash.ts +17 -0
- package/core/src/utils/src/helpers.ts +187 -0
- package/core/src/utils/src/index.ts +22 -0
- package/core/src/utils/src/macroable.ts +1 -0
- package/core/src/utils/src/math.ts +30 -0
- package/core/src/utils/src/promise.ts +117 -0
- package/core/src/utils/src/regex.ts +2 -0
- package/core/src/utils/src/sleep.ts +60 -0
- package/core/src/utils/src/throttle.ts +44 -0
- package/core/src/utils/src/vendors.ts +258 -0
- package/core/src/utils/src/versions.ts +6 -0
- package/core/src/utils/tests/example.test.ts +5 -0
- package/core/src/validation/README.md +53 -0
- package/core/src/validation/build.ts +5 -0
- package/core/src/validation/dist/index.js +187 -0
- package/core/src/validation/package.json +63 -0
- package/core/src/validation/src/is.ts +111 -0
- package/core/src/validation/src/rules.ts +126 -0
- package/core/src/validation/src/types/index.ts +7 -0
- package/core/src/validation/src/types/money.ts +17 -0
- package/core/src/validation/src/validate.ts +33 -0
- package/core/src/validation/tests/example.test.ts +5 -0
- package/core/src/vite/README.md +59 -0
- package/core/src/vite/build.ts +9 -0
- package/core/src/vite/dist/index.js +649 -0
- package/core/src/vite/package.json +122 -0
- package/core/src/vite/src/api.ts +19 -0
- package/core/src/vite/src/components.ts +79 -0
- package/core/src/vite/src/desktop.ts +59 -0
- package/core/src/vite/src/example-vue.ts +27 -0
- package/core/src/vite/src/example-wc.ts +27 -0
- package/core/src/vite/src/functions.ts +55 -0
- package/core/src/vite/src/index.ts +20 -0
- package/core/src/vite/src/plugin/auto-imports.ts +40 -0
- package/core/src/vite/src/plugin/components.ts +18 -0
- package/core/src/vite/src/plugin/css-engine.ts +16 -0
- package/core/src/vite/src/plugin/devtools.ts +1 -0
- package/core/src/vite/src/plugin/docs.ts +16 -0
- package/core/src/vite/src/plugin/fonts.ts +6 -0
- package/core/src/vite/src/plugin/i18n.ts +13 -0
- package/core/src/vite/src/plugin/index.ts +21 -0
- package/core/src/vite/src/plugin/inspect.ts +6 -0
- package/core/src/vite/src/plugin/layouts.ts +21 -0
- package/core/src/vite/src/plugin/markdown.ts +26 -0
- package/core/src/vite/src/plugin/pages.ts +34 -0
- package/core/src/vite/src/plugin/presets.ts +17 -0
- package/core/src/vite/src/plugin/pwa.ts +33 -0
- package/core/src/vite/src/plugin/router.ts +15 -0
- package/core/src/vite/src/plugin/stacks.ts +149 -0
- package/core/src/vite/src/plugin/ui-engine.ts +19 -0
- package/core/src/vite/src/stacks.ts +12 -0
- package/core/src/vite/src/views.ts +86 -0
- package/core/src/vite/src/web-components.ts +67 -0
- package/core/src/vite/tests/example.test.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/README.md +59 -0
- package/core/src/vite-plugin-vue-layouts/build.ts +8 -0
- package/core/src/vite-plugin-vue-layouts/client.d.ts +5 -0
- package/core/src/vite-plugin-vue-layouts/dist/index.js +271 -0
- package/core/src/vite-plugin-vue-layouts/package.json +64 -0
- package/core/src/vite-plugin-vue-layouts/src/RouteLayout.ts +26 -0
- package/core/src/vite-plugin-vue-layouts/src/clientSide.ts +99 -0
- package/core/src/vite-plugin-vue-layouts/src/files.ts +24 -0
- package/core/src/vite-plugin-vue-layouts/src/importCode.ts +32 -0
- package/core/src/vite-plugin-vue-layouts/src/index.ts +150 -0
- package/core/src/vite-plugin-vue-layouts/src/types.ts +53 -0
- package/core/src/vite-plugin-vue-layouts/src/utils.ts +15 -0
- package/core/src/vite-plugin-vue-layouts/tests/example.test.ts +5 -0
- package/core/src/whois/README.md +55 -0
- package/core/src/whois/build.ts +8 -0
- package/core/src/whois/dist/index.js +601 -0
- package/core/src/whois/package.json +60 -0
- package/core/src/whois/src/index.ts +497 -0
- package/core/src/whois/src/parameters.ts +4 -0
- package/core/src/whois/src/servers.ts +318 -0
- package/core/src/whois/src/test.ts +5 -0
- package/core/src/whois/tests/example.test.ts +5 -0
- package/core/src/x-ray/README.md +55 -0
- package/core/src/x-ray/package.json +53 -0
- package/core/src/x-ray/src/client.ts +14 -0
- package/core/src/x-ray/src/desktop/api/nitro.config.ts +19 -0
- package/core/src/x-ray/src/desktop/api/storage/index.ts +7 -0
- package/core/src/x-ray/src/desktop/app.stx +377 -0
- package/core/src/x-ray/src/desktop/functions/http.ts +26 -0
- package/core/src/x-ray/src/desktop/main.ts +14 -0
- package/core/src/x-ray/src/desktop/plugins/unified/unified-styles.scss +0 -0
- package/core/src/x-ray/src/desktop/styles/app.scss +0 -0
- package/core/src/x-ray/src/http.ts +26 -0
- package/core/src/x-ray/src/index.ts +42 -0
- package/core/src/x-ray/tests/example.test.ts +5 -0
- package/core/tsconfig.json +73 -0
- package/core/web-types.json +67 -0
- package/ide/dictionary.txt +306 -0
- package/ide/jetbrains/.idea/jsLinters/eslint.xml +1 -1
- package/ide/jetbrains/.idea/stacks.iml +56 -56
- package/ide/jetbrains/options/nodejs.xml +3 -3
- package/ide/vscode/.vscode/settings.json +55 -51
- package/ide/vscode/LICENSE.md +1 -1
- package/ide/vscode/README.md +1 -2
- package/ide/vscode/package.json +10 -9
- package/package.json +477 -201
- package/stubs/.gitkeep +0 -0
- package/stubs/TODO.md +18 -0
- package/vcs/github/CODE_OF_CONDUCT.md +1 -1
- package/vcs/github/CONTRIBUTING.md +6 -8
- package/vcs/github/EXPLANATIONS.md +2 -2
- package/vcs/github/ISSUE_TEMPLATE/bug_report.yml +1 -14
- package/vcs/github/ISSUE_TEMPLATE/config.yml +1 -1
- package/vcs/github/SECURITY.md +1 -1
- package/vcs/github/workflows/README.md +1 -1
- package/vcs/github/workflows/ci.yml +26 -47
- package/vcs/github/workflows/export-size.yml +5 -14
- package/vcs/github/workflows/labeler.yml +13 -0
- package/vcs/github/workflows/release.yml +21 -21
- package/.gitignore +0 -18
- package/README.md +0 -416
- package/api/nitro.config.ts +0 -17
- package/api/package.json +0 -43
- package/api/routes/index.ts +0 -1
- package/art/logo-dark.svg +0 -11
- package/art/logo.svg +0 -11
- package/auto-imports.d.ts +0 -2572
- package/components.d.ts +0 -19
- package/core/actions/README.md +0 -58
- package/core/actions/build.config.ts +0 -187
- package/core/actions/package.json +0 -276
- package/core/actions/src/add.ts +0 -32
- package/core/actions/src/build/component-libs.ts +0 -5
- package/core/actions/src/build/core.ts +0 -6
- package/core/actions/src/build/stacks.ts +0 -9
- package/core/actions/src/build.ts +0 -93
- package/core/actions/src/bump.ts +0 -7
- package/core/actions/src/changelog.ts +0 -7
- package/core/actions/src/clean.ts +0 -12
- package/core/actions/src/commit.ts +0 -19
- package/core/actions/src/copy-types.ts +0 -22
- package/core/actions/src/deploy/domains.ts +0 -8
- package/core/actions/src/deploy.ts +0 -8
- package/core/actions/src/dev/components.ts +0 -5
- package/core/actions/src/dev/docs.ts +0 -5
- package/core/actions/src/dev/index.ts +0 -25
- package/core/actions/src/examples.ts +0 -48
- package/core/actions/src/fresh.ts +0 -7
- package/core/actions/src/generate/component-meta.ts +0 -15
- package/core/actions/src/generate/ide-helpers.ts +0 -20
- package/core/actions/src/generate/index.ts +0 -134
- package/core/actions/src/generate/lib-entries.ts +0 -17
- package/core/actions/src/generate/settings.ts +0 -4
- package/core/actions/src/generate/vscode-custom-data.ts +0 -16
- package/core/actions/src/generate/vue-compat.ts +0 -10
- package/core/actions/src/helpers/component-meta.ts +0 -93
- package/core/actions/src/helpers/index.ts +0 -6
- package/core/actions/src/helpers/lib-entries.ts +0 -138
- package/core/actions/src/helpers/package-json.ts +0 -96
- package/core/actions/src/helpers/utils.ts +0 -76
- package/core/actions/src/helpers/vscode-custom-data.ts +0 -28
- package/core/actions/src/helpers/vue-compat.ts +0 -17
- package/core/actions/src/index.ts +0 -1
- package/core/actions/src/key-generate.ts +0 -10
- package/core/actions/src/lint/fix.ts +0 -5
- package/core/actions/src/lint/index.ts +0 -17
- package/core/actions/src/make.ts +0 -328
- package/core/actions/src/migrate.ts +0 -3
- package/core/actions/src/preinstall.ts +0 -27
- package/core/actions/src/prepublish.ts +0 -16
- package/core/actions/src/release.ts +0 -15
- package/core/actions/src/seed.ts +0 -3
- package/core/actions/src/test/coverage.ts +0 -5
- package/core/actions/src/test/feature.ts +0 -5
- package/core/actions/src/test/ui.ts +0 -5
- package/core/actions/src/test/unit.ts +0 -5
- package/core/actions/src/test.ts +0 -5
- package/core/actions/src/tinker.ts +0 -10
- package/core/actions/src/typecheck.ts +0 -5
- package/core/actions/src/types.ts +0 -23
- package/core/actions/src/upgrade/framework.ts +0 -29
- package/core/actions/src/upgrade/index.ts +0 -25
- package/core/actions/src/upgrade/node.ts +0 -4
- package/core/actions/src/upgrade/package-manager.ts +0 -4
- package/core/actions/src/upgrade.ts +0 -75
- package/core/actions/tests/example.test.ts +0 -7
- package/core/ai/README.md +0 -62
- package/core/ai/build.config.ts +0 -13
- package/core/ai/package.json +0 -54
- package/core/ai/src/drivers/openai.ts +0 -1
- package/core/ai/tests/example.test.ts +0 -7
- package/core/alias/README.md +0 -62
- package/core/alias/build.config.ts +0 -13
- package/core/alias/package.json +0 -51
- package/core/alias/src/index.ts +0 -108
- package/core/alias/tests/example.test.ts +0 -7
- package/core/analytics/README.md +0 -62
- package/core/analytics/build.config.ts +0 -13
- package/core/analytics/package.json +0 -64
- package/core/analytics/src/drivers/fathom.ts +0 -1
- package/core/analytics/tests/example.test.ts +0 -7
- package/core/arrays/README.md +0 -59
- package/core/arrays/build.config.ts +0 -12
- package/core/arrays/package.json +0 -60
- package/core/arrays/src/contains.ts +0 -23
- package/core/arrays/src/helpers.ts +0 -206
- package/core/arrays/src/index.ts +0 -4
- package/core/arrays/src/macro.ts +0 -135
- package/core/arrays/src/math.ts +0 -19
- package/core/arrays/tests/example.test.ts +0 -7
- package/core/auth/README.md +0 -59
- package/core/auth/build.config.ts +0 -12
- package/core/auth/package.json +0 -48
- package/core/auth/tests/example.test.ts +0 -7
- package/core/buddy/README.md +0 -416
- package/core/buddy/art/social.png +0 -0
- package/core/buddy/build.config.ts +0 -14
- package/core/buddy/package.json +0 -128
- package/core/buddy/src/cli.ts +0 -65
- package/core/buddy/src/commands/add.ts +0 -62
- package/core/buddy/src/commands/build.ts +0 -149
- package/core/buddy/src/commands/changelog.ts +0 -31
- package/core/buddy/src/commands/clean.ts +0 -29
- package/core/buddy/src/commands/commit.ts +0 -18
- package/core/buddy/src/commands/create.ts +0 -126
- package/core/buddy/src/commands/deploy.ts +0 -29
- package/core/buddy/src/commands/dev.ts +0 -142
- package/core/buddy/src/commands/example.ts +0 -59
- package/core/buddy/src/commands/fresh.ts +0 -29
- package/core/buddy/src/commands/generate.ts +0 -118
- package/core/buddy/src/commands/index.ts +0 -27
- package/core/buddy/src/commands/inspire.ts +0 -24
- package/core/buddy/src/commands/key.ts +0 -28
- package/core/buddy/src/commands/lint.ts +0 -45
- package/core/buddy/src/commands/make.ts +0 -257
- package/core/buddy/src/commands/migrate.ts +0 -31
- package/core/buddy/src/commands/onboarding.ts +0 -22
- package/core/buddy/src/commands/preinstall.ts +0 -18
- package/core/buddy/src/commands/prepublish.ts +0 -19
- package/core/buddy/src/commands/release.ts +0 -28
- package/core/buddy/src/commands/seed.ts +0 -31
- package/core/buddy/src/commands/setting.ts +0 -26
- package/core/buddy/src/commands/setup.ts +0 -26
- package/core/buddy/src/commands/test.ts +0 -118
- package/core/buddy/src/commands/tinker.ts +0 -29
- package/core/buddy/src/commands/types.ts +0 -26
- package/core/buddy/src/commands/upgrade.ts +0 -134
- package/core/buddy/src/commands/version.ts +0 -28
- package/core/build/README.md +0 -59
- package/core/build/build.config.ts +0 -27
- package/core/build/package.json +0 -77
- package/core/build/src/desktop.ts +0 -152
- package/core/build/src/example-vue.ts +0 -25
- package/core/build/src/example-wc.ts +0 -25
- package/core/build/src/functions.ts +0 -54
- package/core/build/src/index.ts +0 -7
- package/core/build/src/stacks.ts +0 -200
- package/core/build/src/views.ts +0 -50
- package/core/build/src/vue-components.ts +0 -137
- package/core/build/src/web-components.ts +0 -62
- package/core/build/tests/example.test.ts +0 -7
- package/core/build/web-types.ts +0 -14
- package/core/cache/README.md +0 -59
- package/core/cache/build.config.ts +0 -15
- package/core/cache/package.json +0 -77
- package/core/cache/src/drivers/memcached.ts +0 -21
- package/core/cache/src/drivers/redis.ts +0 -44
- package/core/cache/src/drivers/upstash.ts +0 -2
- package/core/cache/src/index.ts +0 -4
- package/core/cache/tests/DynamoDB.test.ts +0 -135
- package/core/cache/tests/Memcached.test.ts +0 -52
- package/core/cache/tests/Redis.test.ts +0 -82
- package/core/cache/vite.config.ts +0 -7
- package/core/chat/README.md +0 -83
- package/core/chat/build.config.ts +0 -13
- package/core/chat/package.json +0 -60
- package/core/chat/tests/example.test.ts +0 -7
- package/core/cli/README.md +0 -129
- package/core/cli/build.config.ts +0 -12
- package/core/cli/package.json +0 -71
- package/core/cli/src/actions/install.ts +0 -40
- package/core/cli/src/command.ts +0 -2
- package/core/cli/src/console.ts +0 -78
- package/core/cli/src/helpers.ts +0 -74
- package/core/cli/src/index.ts +0 -10
- package/core/cli/src/parse.ts +0 -99
- package/core/cli/src/run.ts +0 -100
- package/core/cli/src/utilities.ts +0 -1
- package/core/cli/tests/example.test.ts +0 -7
- package/core/cloud/README.md +0 -59
- package/core/cloud/build.config.ts +0 -12
- package/core/cloud/netlify.toml +0 -18
- package/core/cloud/package.json +0 -66
- package/core/cloud/src/aws/index.ts +0 -9
- package/core/cloud/src/aws/logger.ts +0 -8
- package/core/cloud/src/aws/metrics.ts +0 -8
- package/core/cloud/src/aws/stack.ts +0 -12
- package/core/cloud/src/aws/tracer.ts +0 -3
- package/core/cloud/src/index.ts +0 -1
- package/core/cloud/src/runtime/nodejs/bootstrap.ts +0 -16
- package/core/cloud/src/runtime/nodejs/build.sh +0 -1
- package/core/cloud/tests/example.test.ts +0 -7
- package/core/collections/README.md +0 -71
- package/core/collections/build.config.ts +0 -11
- package/core/collections/package.json +0 -55
- package/core/collections/tests/example.test.ts +0 -7
- package/core/config/README.md +0 -71
- package/core/config/build.config.ts +0 -46
- package/core/config/package.json +0 -54
- package/core/config/src/defaults.ts +0 -17
- package/core/config/src/index.ts +0 -4
- package/core/config/src/stacks.ts +0 -48
- package/core/config/tests/example.test.ts +0 -7
- package/core/database/README.md +0 -59
- package/core/database/build.config.ts +0 -16
- package/core/database/package.json +0 -64
- package/core/database/src/factory/index.ts +0 -24
- package/core/database/src/index.ts +0 -3
- package/core/database/src/migrations/index.ts +0 -148
- package/core/database/src/seeder/index.ts +0 -79
- package/core/database/tests/example.test.ts +0 -7
- package/core/datetime/README.md +0 -66
- package/core/datetime/build.config.ts +0 -12
- package/core/datetime/package.json +0 -54
- package/core/datetime/tests/example.test.ts +0 -7
- package/core/desktop/README.md +0 -49
- package/core/desktop/build.config.ts +0 -16
- package/core/desktop/package.json +0 -68
- package/core/desktop/src/drivers/tauri/index.ts +0 -1
- package/core/desktop/src/index.ts +0 -1
- package/core/desktop/tests/example.test.ts +0 -7
- package/core/development/README.md +0 -27
- package/core/development/build.config.ts +0 -25
- package/core/development/package.json +0 -68
- package/core/development/src/index.ts +0 -4
- package/core/development/tests/example.test.ts +0 -7
- package/core/dns/README.md +0 -56
- package/core/dns/build.config.ts +0 -18
- package/core/dns/package.json +0 -55
- package/core/dns/src/index.ts +0 -18
- package/core/dns/tests/example.test.ts +0 -7
- package/core/docs/README.md +0 -59
- package/core/docs/build.config.ts +0 -15
- package/core/docs/package.json +0 -54
- package/core/docs/src/index.ts +0 -5
- package/core/docs/tests/example.test.ts +0 -7
- package/core/email/README.md +0 -155
- package/core/email/build.config.ts +0 -12
- package/core/email/package.json +0 -82
- package/core/email/src/actions/send.ts +0 -38
- package/core/email/src/drivers/emailjs.ts +0 -23
- package/core/email/src/drivers/mailgun.ts +0 -21
- package/core/email/src/drivers/mailjet.ts +0 -21
- package/core/email/src/drivers/mandrill.ts +0 -19
- package/core/email/src/drivers/netcore.ts +0 -19
- package/core/email/src/drivers/nodemailer.ts +0 -23
- package/core/email/src/drivers/postmark.ts +0 -19
- package/core/email/src/drivers/sendgrid.ts +0 -20
- package/core/email/src/drivers/ses.ts +0 -22
- package/core/email/src/index.ts +0 -9
- package/core/email/tests/example.test.ts +0 -7
- package/core/error-handling/README.md +0 -131
- package/core/error-handling/build.config.ts +0 -19
- package/core/error-handling/package.json +0 -58
- package/core/error-handling/src/index.ts +0 -58
- package/core/error-handling/tests/example.test.ts +0 -7
- package/core/events/README.md +0 -76
- package/core/events/build.config.ts +0 -12
- package/core/events/package.json +0 -53
- package/core/events/src/index.ts +0 -38
- package/core/events/tests/example.test.ts +0 -7
- package/core/faker/README.md +0 -62
- package/core/faker/build.config.ts +0 -17
- package/core/faker/package.json +0 -55
- package/core/faker/tests/example.test.ts +0 -7
- package/core/git/README.md +0 -69
- package/core/git/build.config.ts +0 -17
- package/core/git/package.json +0 -58
- package/core/git/src/index.ts +0 -1
- package/core/git/tests/example.test.ts +0 -7
- package/core/health/README.md +0 -56
- package/core/health/build.config.ts +0 -17
- package/core/health/package.json +0 -53
- package/core/health/src/drivers/ohdear.ts +0 -1
- package/core/health/src/index.ts +0 -1
- package/core/health/src/notifications/index.ts +0 -1
- package/core/health/tests/example.test.ts +0 -7
- package/core/lint/README.md +0 -73
- package/core/lint/build.config.ts +0 -17
- package/core/lint/package.json +0 -58
- package/core/lint/tests/example.test.ts +0 -7
- package/core/logging/README.md +0 -58
- package/core/logging/build.config.ts +0 -26
- package/core/logging/package.json +0 -61
- package/core/logging/src/index.ts +0 -11
- package/core/logging/tests/example.test.ts +0 -7
- package/core/modules/README.md +0 -51
- package/core/modules/build.config.ts +0 -18
- package/core/modules/package.json +0 -61
- package/core/modules/src/i18n.ts +0 -23
- package/core/modules/src/nprogress.ts +0 -14
- package/core/modules/src/pwa.ts +0 -12
- package/core/modules/tests/example.test.ts +0 -7
- package/core/notifications/README.md +0 -272
- package/core/notifications/build.config.ts +0 -16
- package/core/notifications/package.json +0 -93
- package/core/notifications/src/index.ts +0 -51
- package/core/notifications/src/tailwind.config.ts +0 -39
- package/core/notifications/src/utils/config.ts +0 -5
- package/core/notifications/tests/chat/Slack.test.ts +0 -35
- package/core/notifications/tests/email/Mailgun.test.ts +0 -41
- package/core/notifications/tests/email/Sendgrid.test.ts +0 -41
- package/core/notifications/tests/sms/Twilio.test.ts +0 -38
- package/core/objects/README.md +0 -71
- package/core/objects/build.config.ts +0 -19
- package/core/objects/package.json +0 -55
- package/core/objects/src/index.ts +0 -147
- package/core/objects/tests/example.test.ts +0 -7
- package/core/orm/README.md +0 -48
- package/core/orm/build.config.ts +0 -12
- package/core/orm/package.json +0 -52
- package/core/orm/src/index.ts +0 -43
- package/core/orm/tests/example.test.ts +0 -7
- package/core/pages/build.config.ts +0 -12
- package/core/pages/package.json +0 -57
- package/core/pages/src/index.ts +0 -39
- package/core/pages/tests/example.test.ts +0 -7
- package/core/path/README.md +0 -64
- package/core/path/build.config.ts +0 -16
- package/core/path/package.json +0 -55
- package/core/path/src/index.ts +0 -486
- package/core/path/tests/example.test.ts +0 -7
- package/core/payments/README.md +0 -64
- package/core/payments/build.config.ts +0 -12
- package/core/payments/package.json +0 -58
- package/core/payments/src/drivers/stripe.ts +0 -137
- package/core/payments/tests/example.test.ts +0 -7
- package/core/push/README.md +0 -71
- package/core/push/build.config.ts +0 -12
- package/core/push/package.json +0 -56
- package/core/push/src/drivers/expo.ts +0 -21
- package/core/push/src/drivers/fcm.ts +0 -21
- package/core/push/src/index.ts +0 -2
- package/core/push/tests/example.test.ts +0 -7
- package/core/query-builder/README.md +0 -48
- package/core/query-builder/build.config.ts +0 -12
- package/core/query-builder/package.json +0 -56
- package/core/query-builder/src/kysely.ts +0 -37
- package/core/query-builder/tests/example.test.ts +0 -7
- package/core/queue/README.md +0 -59
- package/core/queue/build.config.ts +0 -12
- package/core/queue/package.json +0 -53
- package/core/queue/src/index.ts +0 -1
- package/core/queue/tests/example.test.ts +0 -7
- package/core/realtime/README.md +0 -59
- package/core/realtime/build.config.ts +0 -12
- package/core/realtime/package.json +0 -50
- package/core/realtime/src/drivers/index.ts +0 -3
- package/core/realtime/src/index.ts +0 -5
- package/core/realtime/tests/example.test.ts +0 -7
- package/core/repl/README.md +0 -53
- package/core/repl/build.config.ts +0 -12
- package/core/repl/package.json +0 -56
- package/core/repl/tests/example.test.ts +0 -7
- package/core/router/README.md +0 -59
- package/core/router/build.config.ts +0 -17
- package/core/router/package.json +0 -53
- package/core/router/src/index.ts +0 -120
- package/core/router/tests/example.test.ts +0 -7
- package/core/scheduler/README.md +0 -137
- package/core/scheduler/build.config.ts +0 -12
- package/core/scheduler/package.json +0 -51
- package/core/scheduler/src/index.ts +0 -120
- package/core/scheduler/tests/example.test.ts +0 -7
- package/core/search-engine/README.md +0 -66
- package/core/search-engine/build.config.ts +0 -20
- package/core/search-engine/package.json +0 -65
- package/core/search-engine/src/drivers/meilisearch.ts +0 -39
- package/core/search-engine/src/helpers.ts +0 -134
- package/core/search-engine/src/index.ts +0 -67
- package/core/search-engine/tests/example.test.ts +0 -7
- package/core/security/README.md +0 -66
- package/core/security/build.config.ts +0 -21
- package/core/security/package.json +0 -57
- package/core/security/src/crypt.ts +0 -23
- package/core/security/src/hash.ts +0 -52
- package/core/security/src/key.ts +0 -11
- package/core/security/tests/example.test.ts +0 -7
- package/core/server/README.md +0 -51
- package/core/server/build.config.ts +0 -11
- package/core/server/package.json +0 -59
- package/core/server/src/config.ts +0 -7
- package/core/server/src/index.ts +0 -2
- package/core/server/src/nitro.config.ts +0 -7
- package/core/server/tests/example.test.ts +0 -7
- package/core/signals/README.md +0 -105
- package/core/signals/build.config.ts +0 -12
- package/core/signals/package.json +0 -55
- package/core/signals/tests/example.test.ts +0 -7
- package/core/slug/README.md +0 -59
- package/core/slug/build.config.ts +0 -12
- package/core/slug/package.json +0 -55
- package/core/slug/src/index.ts +0 -57
- package/core/slug/tests/example.test.ts +0 -7
- package/core/sms/README.md +0 -137
- package/core/sms/build.config.ts +0 -17
- package/core/sms/package.json +0 -72
- package/core/sms/src/index.ts +0 -8
- package/core/sms/tests/example.test.ts +0 -7
- package/core/storage/README.md +0 -74
- package/core/storage/build.config.ts +0 -12
- package/core/storage/package.json +0 -61
- package/core/storage/src/index.ts +0 -208
- package/core/storage/tests/example.test.ts +0 -7
- package/core/strings/README.md +0 -77
- package/core/strings/build.config.ts +0 -12
- package/core/strings/package.json +0 -78
- package/core/strings/src/case.ts +0 -27
- package/core/strings/src/index.ts +0 -4
- package/core/strings/src/macro.ts +0 -139
- package/core/strings/src/pluralize.ts +0 -5
- package/core/strings/src/utils.ts +0 -120
- package/core/strings/tests/example.test.ts +0 -7
- package/core/testing/README.md +0 -59
- package/core/testing/build.config.ts +0 -17
- package/core/testing/package.json +0 -62
- package/core/testing/src/index.ts +0 -3
- package/core/tinker/README.md +0 -61
- package/core/tinker/build.config.ts +0 -13
- package/core/tinker/package.json +0 -58
- package/core/tinker/src/index.ts +0 -1
- package/core/tinker/src/tinker.ts +0 -2
- package/core/types/README.md +0 -59
- package/core/types/build.config.ts +0 -37
- package/core/types/package.json +0 -88
- package/core/types/src/app.ts +0 -119
- package/core/types/src/cache.ts +0 -78
- package/core/types/src/cdn.ts +0 -15
- package/core/types/src/cli.ts +0 -303
- package/core/types/src/components.ts +0 -64
- package/core/types/src/cron-jobs.ts +0 -38
- package/core/types/src/database.ts +0 -49
- package/core/types/src/debug.ts +0 -6
- package/core/types/src/deploy.ts +0 -8
- package/core/types/src/dns.ts +0 -49
- package/core/types/src/docs.ts +0 -5
- package/core/types/src/errors.ts +0 -24
- package/core/types/src/events.ts +0 -30
- package/core/types/src/fs.ts +0 -30
- package/core/types/src/git.ts +0 -131
- package/core/types/src/hashing.ts +0 -122
- package/core/types/src/index.ts +0 -40
- package/core/types/src/layout.ts +0 -8
- package/core/types/src/library.ts +0 -146
- package/core/types/src/model.ts +0 -59
- package/core/types/src/money.ts +0 -3
- package/core/types/src/notifications.ts +0 -205
- package/core/types/src/payments.ts +0 -63
- package/core/types/src/queue.ts +0 -34
- package/core/types/src/router.ts +0 -52
- package/core/types/src/search-engine.ts +0 -166
- package/core/types/src/ssg.ts +0 -3
- package/core/types/src/stacks.ts +0 -192
- package/core/types/src/ui.ts +0 -193
- package/core/types/src/utils.ts +0 -43
- package/core/ui/README.md +0 -66
- package/core/ui/build.config.ts +0 -13
- package/core/ui/package.json +0 -69
- package/core/ui/src/index.ts +0 -20
- package/core/ui/src/unocss.config.ts +0 -47
- package/core/ui/src/unocss.ts +0 -45
- package/core/ui/tests/example.test.ts +0 -7
- package/core/utils/build.config.ts +0 -36
- package/core/utils/package.json +0 -102
- package/core/utils/src/base.ts +0 -25
- package/core/utils/src/config.ts +0 -135
- package/core/utils/src/delete.ts +0 -1
- package/core/utils/src/equal.ts +0 -27
- package/core/utils/src/helpers.ts +0 -169
- package/core/utils/src/index.ts +0 -15
- package/core/utils/src/math.ts +0 -30
- package/core/utils/src/promise.ts +0 -124
- package/core/utils/src/throttle.ts +0 -42
- package/core/utils/src/vendors.ts +0 -222
- package/core/utils/src/versions.ts +0 -1
- package/core/utils/tests/example.test.ts +0 -7
- package/core/validation/README.md +0 -53
- package/core/validation/build.config.ts +0 -21
- package/core/validation/package.json +0 -56
- package/core/validation/src/is.ts +0 -110
- package/core/validation/src/rules.ts +0 -126
- package/core/validation/src/types/env.ts +0 -147
- package/core/validation/src/types/index.ts +0 -2
- package/core/validation/src/types/money.ts +0 -17
- package/core/validation/src/validate.ts +0 -18
- package/core/validation/tests/example.test.ts +0 -7
- package/core/vite-plugin/README.md +0 -59
- package/core/vite-plugin/build.config.ts +0 -17
- package/core/vite-plugin/package.json +0 -51
- package/core/vite-plugin/src/index.ts +0 -23
- package/core/vite-plugin/tests/example.test.ts +0 -7
- package/dictionary.txt +0 -228
- package/docs/.vitepress/config.ts +0 -9
- package/docs/README.md +0 -13
- package/docs/package.json +0 -47
- package/env.d.ts +0 -7
- package/ide/jetbrains/.idea/.gitignore +0 -5
- package/libs/components/vue/index.html +0 -13
- package/libs/components/vue/main.ts +0 -19
- package/libs/components/vue/package.json +0 -41
- package/libs/components/web/package.json +0 -41
- package/libs/examples/vue/App.vue +0 -12
- package/libs/examples/vue/favicon.png +0 -0
- package/libs/examples/vue/index.html +0 -20
- package/libs/examples/web/favicon.png +0 -0
- package/libs/examples/web/index.html +0 -13
- package/libs/functions/package.json +0 -41
- package/reset.d.ts +0 -1
- package/scripts/ensure.sh +0 -33
- package/scripts/publish.sh +0 -18
- package/scripts/setup.sh +0 -540
- package/shims.d.ts +0 -17
- package/simple-git-hooks.cjs +0 -5
- package/stacks/dashboard/README.md +0 -74
- package/stacks/dashboard/build.config.ts +0 -15
- package/stacks/dashboard/package.json +0 -47
- package/stacks/dashboard/tests/example.test.ts +0 -7
- package/stacks/tables/README.md +0 -109
- package/stacks/tables/build.config.ts +0 -14
- package/stacks/tables/examples/vue/App.vue +0 -12
- package/stacks/tables/examples/vue/favicon.png +0 -0
- package/stacks/tables/examples/vue/index.html +0 -20
- package/stacks/tables/examples/web/favicon.png +0 -0
- package/stacks/tables/examples/web/index.html +0 -13
- package/stacks/tables/package.json +0 -57
- package/stacks/tables/src/App.vue +0 -23
- package/stacks/tables/src/cli/index.ts +0 -1
- package/stacks/tables/src/components/README.md +0 -110
- package/stacks/tables/src/components/Table.vue +0 -342
- package/stacks/tables/src/components/TableBody.vue +0 -32
- package/stacks/tables/src/components/TableFilters.vue +0 -704
- package/stacks/tables/src/components/TableHead.vue +0 -60
- package/stacks/tables/src/components/TablePagination.vue +0 -131
- package/stacks/tables/src/components/TableRow.vue +0 -73
- package/stacks/tables/src/components/TableSearch.vue +0 -39
- package/stacks/tables/src/components/Tooltip.vue +0 -10
- package/stacks/tables/src/config/tables.ts +0 -1
- package/stacks/tables/src/main.ts +0 -4
- package/stacks/tables/tests/example.test.ts +0 -7
- package/stacks/tables/vite.config.ts +0 -26
- package/stacks/tinker/package.json +0 -49
- package/stacks/tinker/src/index.ts +0 -1
- package/stacks/x-ray/README.md +0 -55
- package/stacks/x-ray/build.config.ts +0 -15
- package/stacks/x-ray/package.json +0 -56
- package/stacks/x-ray/src/client.ts +0 -14
- package/stacks/x-ray/src/desktop/api/nitro.config.ts +0 -19
- package/stacks/x-ray/src/desktop/api/storage/index.ts +0 -7
- package/stacks/x-ray/src/desktop/app.vue +0 -377
- package/stacks/x-ray/src/desktop/functions/http.ts +0 -26
- package/stacks/x-ray/src/desktop/main.ts +0 -14
- package/stacks/x-ray/src/http.ts +0 -26
- package/stacks/x-ray/src/index.ts +0 -42
- package/stacks/x-ray/tests/example.test.ts +0 -7
- package/stacks.d.ts +0 -22
- package/tsconfig.json +0 -159
- package/views/desktop/.gitignore +0 -24
- package/views/desktop/README.md +0 -73
- package/views/desktop/index.html +0 -13
- package/views/desktop/package.json +0 -29
- package/views/desktop/public/favicon.svg +0 -1
- package/views/desktop/src/.gitignore +0 -3
- package/views/desktop/src/Cargo.lock +0 -3916
- package/views/desktop/src/Cargo.toml +0 -28
- package/views/desktop/src/build.rs +0 -3
- package/views/desktop/src/icons/128x128.png +0 -0
- package/views/desktop/src/icons/128x128@2x.png +0 -0
- package/views/desktop/src/icons/32x32.png +0 -0
- package/views/desktop/src/icons/Square107x107Logo.png +0 -0
- package/views/desktop/src/icons/Square142x142Logo.png +0 -0
- package/views/desktop/src/icons/Square150x150Logo.png +0 -0
- package/views/desktop/src/icons/Square284x284Logo.png +0 -0
- package/views/desktop/src/icons/Square30x30Logo.png +0 -0
- package/views/desktop/src/icons/Square310x310Logo.png +0 -0
- package/views/desktop/src/icons/Square44x44Logo.png +0 -0
- package/views/desktop/src/icons/Square71x71Logo.png +0 -0
- package/views/desktop/src/icons/Square89x89Logo.png +0 -0
- package/views/desktop/src/icons/StoreLogo.png +0 -0
- package/views/desktop/src/icons/icon.icns +0 -0
- package/views/desktop/src/icons/icon.ico +0 -0
- package/views/desktop/src/icons/icon.png +0 -0
- package/views/desktop/src/src/main.rs +0 -10
- package/views/desktop/src/tauri.conf.json +0 -73
- package/views/web/App.vue +0 -26
- package/views/web/index.html +0 -23
- package/views/web/main.ts +0 -26
- package/views/web/public/_headers +0 -3
- package/views/web/public/favicon-dark.svg +0 -3
- package/views/web/public/favicon.svg +0 -3
- package/views/web/public/pwa-192x192.png +0 -0
- package/views/web/public/pwa-512x512.png +0 -0
- package/views/web/public/safari-pinned-tab.svg +0 -41
- package/views/web/styles/main.css +0 -29
- package/views/web/styles/markdown.css +0 -28
- package/vitest.config.ts +0 -31
- package/web-types.json +0 -67
- /package/{custom-elements.json → core/custom-elements.json} +0 -0
- /package/core/{actions → src/actions}/src/upgrade/dependencies.ts +0 -0
- /package/{stacks/dashboard/src/index.ts → core/src/ai/src/chatbots.ts} +0 -0
- /package/{stacks/tables/src/docs/index.md → core/src/ai/src/image-generation.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/plugins/unified/unified-styles.scss → core/src/ai/src/personalization.ts} +0 -0
- /package/{stacks/x-ray/src/desktop/styles/app.scss → core/src/ai/src/search.ts} +0 -0
- /package/core/{auth → src/auth}/src/index.ts +0 -0
- /package/core/{buddy → src/buddy}/src/index.ts +0 -0
- /package/core/{build → src/build}/web-types.config.cjs +0 -0
- /package/core/{cache → src/cache}/src/drivers/dynamodb.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/discord.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/slack.ts +0 -0
- /package/core/{chat → src/chat}/src/drivers/teams.ts +0 -0
- /package/core/{chat → src/chat}/src/index.ts +0 -0
- /package/core/{cli → src/cli}/src/actions/index.ts +0 -0
- /package/core/{cli → src/cli}/src/spinner.ts +0 -0
- /package/core/{collections → src/collections}/src/index.ts +0 -0
- /package/core/{datetime → src/datetime}/src/index.ts +0 -0
- /package/core/{email → src/email}/src/tailwind.config.ts +0 -0
- /package/core/{email → src/email}/src/utils/config.ts +0 -0
- /package/core/{email → src/email}/src/utils/template.html +0 -0
- /package/core/{faker → src/faker}/src/index.ts +0 -0
- /package/core/{lint → src/lint}/src/index.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/chat.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/email.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/push.ts +0 -0
- /package/core/{notifications → src/notifications}/src/drivers/sms.ts +0 -0
- /package/core/{notifications → src/notifications}/src/utils/template.html +0 -0
- /package/core/{payments → src/payments}/src/index.ts +0 -0
- /package/core/{query-builder → src/query-builder}/src/index.ts +0 -0
- /package/core/{repl → src/repl}/src/index.ts +0 -0
- /package/core/{security → src/security}/src/index.ts +0 -0
- /package/core/{signals → src/signals}/src/index.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/gupshup.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/nexmo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/plivo.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sms77.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/sns.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/telnyx.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/termii.ts +0 -0
- /package/core/{sms → src/sms}/src/drivers/twilio.ts +0 -0
- /package/core/{strings → src/strings}/src/is.ts +0 -0
- /package/{stacks → core/src}/tables/index.html +0 -0
- /package/core/{ai/src → src/tables/src/commands}/index.ts +0 -0
- /package/{stacks/tables/src/components/Demo.vue → core/src/tables/src/components/Demo.stx} +0 -0
- /package/{stacks/tables/src/components/TableCellActionItems.vue → core/src/tables/src/components/TableCellActionItems.stx} +0 -0
- /package/{stacks → core/src}/tables/src/functions/README.md +0 -0
- /package/{stacks → core/src}/tables/src/functions/dark.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/index.ts +0 -0
- /package/{stacks → core/src}/tables/src/functions/table.ts +0 -0
- /package/core/{analytics → src/tinker}/src/index.ts +0 -0
- /package/core/{types → src/types}/src/auto-imports.ts +0 -0
- /package/core/{types → src/types}/src/build.ts +0 -0
- /package/core/{types → src/types}/src/exit-code.ts +0 -0
- /package/core/{types → src/types}/src/i18n.ts +0 -0
- /package/core/{types → src/types}/src/inspect.ts +0 -0
- /package/core/{types → src/types}/src/manifest.ts +0 -0
- /package/core/{types → src/types}/src/pages.ts +0 -0
- /package/core/{types → src/types}/src/promise.ts +0 -0
- /package/core/{types → src/types}/src/pwa.ts +0 -0
- /package/core/{types → src/types}/src/reactivity.ts +0 -0
- /package/core/{types → src/types}/src/tables.ts +0 -0
- /package/core/{utils → src/utils}/src/currency.ts +0 -0
- /package/core/{utils → src/utils}/src/debounce.ts +0 -0
- /package/core/{utils → src/utils}/src/function.ts +0 -0
- /package/core/{utils → src/utils}/src/guards.ts +0 -0
- /package/core/{utils → src/utils}/src/p.ts +0 -0
- /package/core/{validation → src/validation}/src/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/index.html +0 -0
- /package/{stacks → core/src}/x-ray/routes/index.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/routes/api/store-logs.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/api/src/types.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/functions/types.ts +0 -0
- /package/{stacks/x-ray/src/desktop/modules/counter/mod.vue → core/src/x-ray/src/desktop/modules/counter/mod.stx} +0 -0
- /package/{stacks/x-ray/src/desktop/modules/fetcher/mod.vue → core/src/x-ray/src/desktop/modules/fetcher/mod.stx} +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/plugins/unified/unified-app.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/desktop/services/http.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/ray.config.ts +0 -0
- /package/{stacks → core/src}/x-ray/src/types.ts +0 -0
package/auto-imports.d.ts
DELETED
|
@@ -1,2572 +0,0 @@
|
|
|
1
|
-
/* eslint-disable */
|
|
2
|
-
/* prettier-ignore */
|
|
3
|
-
// @ts-nocheck
|
|
4
|
-
// Generated by unplugin-auto-import
|
|
5
|
-
export {}
|
|
6
|
-
declare global {
|
|
7
|
-
const $: typeof import('vue/macros')['$']
|
|
8
|
-
const $$: typeof import('vue/macros')['$$']
|
|
9
|
-
const $computed: typeof import('vue/macros')['$computed']
|
|
10
|
-
const $customRef: typeof import('vue/macros')['$customRef']
|
|
11
|
-
const $ref: typeof import('vue/macros')['$ref']
|
|
12
|
-
const $shallowRef: typeof import('vue/macros')['$shallowRef']
|
|
13
|
-
const $toRef: typeof import('vue/macros')['$toRef']
|
|
14
|
-
const Arr: typeof import('./core/arrays/src/macro')['Arr']
|
|
15
|
-
const Collection: typeof import('./core/objects/src/index')['Collection']
|
|
16
|
-
const CssEngine: typeof import('@stacksjs/ui')['CssEngine']
|
|
17
|
-
const EffectScope: typeof import('vue')['EffectScope']
|
|
18
|
-
const Err: typeof import('./core/error-handling/src/index')['Err']
|
|
19
|
-
const ExitCode: typeof import('./core/cli/src/index')['ExitCode']
|
|
20
|
-
const Head: typeof import('./core/utils/src/vendors')['Head']
|
|
21
|
-
const HeadVuePlugin: typeof import('./core/utils/src/vendors')['HeadVuePlugin']
|
|
22
|
-
const MoneyValidator: typeof import('./core/validation/src/types/money')['MoneyValidator']
|
|
23
|
-
const MysqlDialect: typeof import('./core/query-builder/src/kysely')['MysqlDialect']
|
|
24
|
-
const Ok: typeof import('./core/error-handling/src/index')['Ok']
|
|
25
|
-
const PostgresDialect: typeof import('./core/query-builder/src/kysely')['PostgresDialect']
|
|
26
|
-
const Prompt: typeof import('./core/cli/src/console')['Prompt']
|
|
27
|
-
const QueryBuilder: typeof import('./core/query-builder/src/kysely')['QueryBuilder']
|
|
28
|
-
const Result: typeof import('./core/error-handling/src/index')['Result']
|
|
29
|
-
const ResultAsync: typeof import('./core/error-handling/src/index')['ResultAsync']
|
|
30
|
-
const Router: typeof import('./core/router/src/index')['Router']
|
|
31
|
-
const Store: typeof import('@stacksjs/ui')['Store']
|
|
32
|
-
const Str: typeof import('./core/strings/src/macro')['Str']
|
|
33
|
-
const USD: typeof import('./core/utils/src/currency')['USD']
|
|
34
|
-
const UiEngine: typeof import('@stacksjs/ui')['UiEngine']
|
|
35
|
-
const Validator: typeof import('./core/validation/src/validate')['Validator']
|
|
36
|
-
const _dirname: typeof import('./core/storage/src/index')['_dirname']
|
|
37
|
-
const actionsPath: typeof import('./core/path/src/index')['actionsPath']
|
|
38
|
-
const add: typeof import('./core/utils/src/currency')['add']
|
|
39
|
-
const addIrregularRule: typeof import('./core/strings/src/pluralize')['addIrregularRule']
|
|
40
|
-
const addPluralRule: typeof import('./core/strings/src/pluralize')['addPluralRule']
|
|
41
|
-
const addSingularRule: typeof import('./core/strings/src/pluralize')['addSingularRule']
|
|
42
|
-
const addUncountableRule: typeof import('./core/strings/src/pluralize')['addUncountableRule']
|
|
43
|
-
const afterAll: typeof import('vitest')['afterAll']
|
|
44
|
-
const afterEach: typeof import('vitest')['afterEach']
|
|
45
|
-
const aiPath: typeof import('./core/path/src/index')['aiPath']
|
|
46
|
-
const aliasPath: typeof import('./core/path/src/index')['aliasPath']
|
|
47
|
-
const all: typeof import('./core/events/src/index')['all']
|
|
48
|
-
const allocate: typeof import('./core/utils/src/currency')['allocate']
|
|
49
|
-
const and: typeof import('./core/utils/src/math')['and']
|
|
50
|
-
const ansi256Bg: typeof import('./core/cli/src/utilities')['ansi256Bg']
|
|
51
|
-
const any: typeof import('./core/validation/src/validate')['any']
|
|
52
|
-
const app: typeof import('../config/app')['default']
|
|
53
|
-
const appPath: typeof import('./core/path/src/index')['appPath']
|
|
54
|
-
const arr: typeof import('./core/arrays/src/macro')['arr']
|
|
55
|
-
const array: typeof import('./core/validation/src/validate')['array']
|
|
56
|
-
const arraysPath: typeof import('./core/path/src/index')['arraysPath']
|
|
57
|
-
const assert: typeof import('vitest')['assert']
|
|
58
|
-
const asyncComputed: typeof import('./core/utils/src/vendors')['asyncComputed']
|
|
59
|
-
const at: typeof import('./core/arrays/src/helpers')['at']
|
|
60
|
-
const auth: typeof import('./core/auth/src/index')['auth']
|
|
61
|
-
const authPath: typeof import('./core/path/src/index')['authPath']
|
|
62
|
-
const autoResetRef: typeof import('./core/utils/src/vendors')['autoResetRef']
|
|
63
|
-
const average: typeof import('./core/arrays/src/math')['average']
|
|
64
|
-
const avg: typeof import('./core/arrays/src/math')['avg']
|
|
65
|
-
const base64Encode: typeof import('./core/security/src/hash')['base64Encode']
|
|
66
|
-
const base64Verify: typeof import('./core/security/src/hash')['base64Verify']
|
|
67
|
-
const basename: typeof import('./core/path/src/index')['basename']
|
|
68
|
-
const batchInvoke: typeof import('./core/utils/src/function')['batchInvoke']
|
|
69
|
-
const bcryptEncode: typeof import('./core/security/src/hash')['bcryptEncode']
|
|
70
|
-
const bcryptVerify: typeof import('./core/security/src/hash')['bcryptVerify']
|
|
71
|
-
const beforeAll: typeof import('vitest')['beforeAll']
|
|
72
|
-
const beforeEach: typeof import('vitest')['beforeEach']
|
|
73
|
-
const bgBlack: typeof import('./core/cli/src/utilities')['bgBlack']
|
|
74
|
-
const bgBlue: typeof import('./core/cli/src/utilities')['bgBlue']
|
|
75
|
-
const bgCyan: typeof import('./core/cli/src/utilities')['bgCyan']
|
|
76
|
-
const bgGray: typeof import('./core/cli/src/utilities')['bgGray']
|
|
77
|
-
const bgGreen: typeof import('./core/cli/src/utilities')['bgGreen']
|
|
78
|
-
const bgLightBlue: typeof import('./core/cli/src/utilities')['bgLightBlue']
|
|
79
|
-
const bgLightCyan: typeof import('./core/cli/src/utilities')['bgLightCyan']
|
|
80
|
-
const bgLightGray: typeof import('./core/cli/src/utilities')['bgLightGray']
|
|
81
|
-
const bgLightGreen: typeof import('./core/cli/src/utilities')['bgLightGreen']
|
|
82
|
-
const bgLightMagenta: typeof import('./core/cli/src/utilities')['bgLightMagenta']
|
|
83
|
-
const bgLightRed: typeof import('./core/cli/src/utilities')['bgLightRed']
|
|
84
|
-
const bgLightYellow: typeof import('./core/cli/src/utilities')['bgLightYellow']
|
|
85
|
-
const bgMagenta: typeof import('./core/cli/src/utilities')['bgMagenta']
|
|
86
|
-
const bgRed: typeof import('./core/cli/src/utilities')['bgRed']
|
|
87
|
-
const bgWhite: typeof import('./core/cli/src/utilities')['bgWhite']
|
|
88
|
-
const bgYellow: typeof import('./core/cli/src/utilities')['bgYellow']
|
|
89
|
-
const black: typeof import('./core/cli/src/utilities')['black']
|
|
90
|
-
const blue: typeof import('./core/cli/src/utilities')['blue']
|
|
91
|
-
const bold: typeof import('./core/cli/src/utilities')['bold']
|
|
92
|
-
const boolean: typeof import('./core/validation/src/validate')['boolean']
|
|
93
|
-
const breakpointsAntDesign: typeof import('./core/utils/src/vendors')['breakpointsAntDesign']
|
|
94
|
-
const breakpointsBootstrapV5: typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']
|
|
95
|
-
const breakpointsMasterCss: typeof import('./core/utils/src/vendors')['breakpointsMasterCss']
|
|
96
|
-
const breakpointsQuasar: typeof import('./core/utils/src/vendors')['breakpointsQuasar']
|
|
97
|
-
const breakpointsSematic: typeof import('./core/utils/src/vendors')['breakpointsSematic']
|
|
98
|
-
const breakpointsTailwind: typeof import('./core/utils/src/vendors')['breakpointsTailwind']
|
|
99
|
-
const breakpointsVuetify: typeof import('./core/utils/src/vendors')['breakpointsVuetify']
|
|
100
|
-
const buildEnginePath: typeof import('./core/path/src/index')['buildEnginePath']
|
|
101
|
-
const buildPath: typeof import('./core/path/src/index')['buildPath']
|
|
102
|
-
const cache: typeof import('../config/cache')['default']
|
|
103
|
-
const cachePath: typeof import('./core/path/src/index')['cachePath']
|
|
104
|
-
const calculatePagination: typeof import('./core/search-engine/src/index')['calculatePagination']
|
|
105
|
-
const camelCase: typeof import('./core/strings/src/case')['camelCase']
|
|
106
|
-
const capitalCase: typeof import('./core/strings/src/case')['capitalCase']
|
|
107
|
-
const capitalize: typeof import('./core/strings/src/case')['capitalize']
|
|
108
|
-
const cdn: typeof import('../config/cdn')['default']
|
|
109
|
-
const chai: typeof import('vitest')['chai']
|
|
110
|
-
const chatPath: typeof import('./core/path/src/index')['chatPath']
|
|
111
|
-
const clamp: typeof import('./core/utils/src/math')['clamp']
|
|
112
|
-
const clampArrayRange: typeof import('./core/arrays/src/helpers')['clampArrayRange']
|
|
113
|
-
const clearUndefined: typeof import('./core/objects/src/index')['clearUndefined']
|
|
114
|
-
const cli: typeof import('../config/cli')['default']
|
|
115
|
-
const cliPath: typeof import('./core/path/src/index')['cliPath']
|
|
116
|
-
const client: typeof import('./core/search-engine/src/index')['client']
|
|
117
|
-
const cloneFnJSON: typeof import('./core/utils/src/vendors')['cloneFnJSON']
|
|
118
|
-
const cloudPath: typeof import('./core/path/src/index')['cloudPath']
|
|
119
|
-
const collect: typeof import('./core/objects/src/index')['collect']
|
|
120
|
-
const collectionsPath: typeof import('./core/path/src/index')['collectionsPath']
|
|
121
|
-
const command: typeof import('./core/cli/src/command')['command']
|
|
122
|
-
const compare: typeof import('./core/utils/src/currency')['compare']
|
|
123
|
-
const componentsPath: typeof import('./core/path/src/index')['componentsPath']
|
|
124
|
-
const computed: typeof import('vue')['computed']
|
|
125
|
-
const computedAsync: typeof import('./core/utils/src/vendors')['computedAsync']
|
|
126
|
-
const computedEager: typeof import('./core/utils/src/vendors')['computedEager']
|
|
127
|
-
const computedInject: typeof import('./core/utils/src/vendors')['computedInject']
|
|
128
|
-
const computedSignal: typeof import('./core/signals/src/index')['computedSignal']
|
|
129
|
-
const computedWithControl: typeof import('./core/utils/src/vendors')['computedWithControl']
|
|
130
|
-
const config: typeof import('./core/utils/src/config')['config']
|
|
131
|
-
const configPath: typeof import('./core/path/src/index')['configPath']
|
|
132
|
-
const constantCase: typeof import('./core/strings/src/case')['constantCase']
|
|
133
|
-
const contains: typeof import('./core/arrays/src/contains')['contains']
|
|
134
|
-
const containsAll: typeof import('./core/arrays/src/contains')['containsAll']
|
|
135
|
-
const containsAny: typeof import('./core/arrays/src/contains')['containsAny']
|
|
136
|
-
const containsNone: typeof import('./core/arrays/src/contains')['containsNone']
|
|
137
|
-
const containsOnly: typeof import('./core/arrays/src/contains')['containsOnly']
|
|
138
|
-
const controlledComputed: typeof import('./core/utils/src/vendors')['controlledComputed']
|
|
139
|
-
const controlledRef: typeof import('./core/utils/src/vendors')['controlledRef']
|
|
140
|
-
const convert: typeof import('./core/utils/src/currency')['convert']
|
|
141
|
-
const copyFolder: typeof import('./core/storage/src/index')['copyFolder']
|
|
142
|
-
const corePath: typeof import('./core/path/src/index')['corePath']
|
|
143
|
-
const count: typeof import('../resources/functions/counter')['count']
|
|
144
|
-
const createApp: typeof import('vue')['createApp']
|
|
145
|
-
const createControlledPromise: typeof import('./core/utils/src/promise')['createControlledPromise']
|
|
146
|
-
const createEventHook: typeof import('./core/utils/src/vendors')['createEventHook']
|
|
147
|
-
const createFetch: typeof import('./core/utils/src/vendors')['createFetch']
|
|
148
|
-
const createFolder: typeof import('./core/storage/src/index')['createFolder']
|
|
149
|
-
const createGenericProjection: typeof import('./core/utils/src/math')['createGenericProjection']
|
|
150
|
-
const createGlobalState: typeof import('./core/utils/src/vendors')['createGlobalState']
|
|
151
|
-
const createHead: typeof import('./core/utils/src/vendors')['createHead']
|
|
152
|
-
const createInjectionState: typeof import('./core/utils/src/vendors')['createInjectionState']
|
|
153
|
-
const createMysqlPool: typeof import('./core/query-builder/src/kysely')['createMysqlPool']
|
|
154
|
-
const createProjection: typeof import('./core/utils/src/math')['createProjection']
|
|
155
|
-
const createPromiseLock: typeof import('./core/utils/src/promise')['createPromiseLock']
|
|
156
|
-
const createReactiveFn: typeof import('./core/utils/src/vendors')['createReactiveFn']
|
|
157
|
-
const createReusableTemplate: typeof import('./core/utils/src/vendors')['createReusableTemplate']
|
|
158
|
-
const createSharedComposable: typeof import('./core/utils/src/vendors')['createSharedComposable']
|
|
159
|
-
const createSingletonPromise: typeof import('./core/utils/src/promise')['createSingletonPromise']
|
|
160
|
-
const createTemplatePromise: typeof import('./core/utils/src/vendors')['createTemplatePromise']
|
|
161
|
-
const createUnrefFn: typeof import('./core/utils/src/vendors')['createUnrefFn']
|
|
162
|
-
const currency: typeof import('./core/utils/src/currency')['currency']
|
|
163
|
-
const currentPage: typeof import('./core/search-engine/src/index')['currentPage']
|
|
164
|
-
const customElementsDataPath: typeof import('./core/path/src/index')['customElementsDataPath']
|
|
165
|
-
const customRef: typeof import('vue')['customRef']
|
|
166
|
-
const customStorageEventName: typeof import('./core/utils/src/vendors')['customStorageEventName']
|
|
167
|
-
const cyan: typeof import('./core/cli/src/utilities')['cyan']
|
|
168
|
-
const dashboardPath: typeof import('./core/path/src/index')['dashboardPath']
|
|
169
|
-
const database: typeof import('../config/database')['default']
|
|
170
|
-
const databasePath: typeof import('./core/path/src/index')['databasePath']
|
|
171
|
-
const dateFormat: typeof import('./core/datetime/src/index')['dateFormat']
|
|
172
|
-
const datetimePath: typeof import('./core/path/src/index')['datetimePath']
|
|
173
|
-
const dd: typeof import('@stacksjs/logging')['dd']
|
|
174
|
-
const debounce: typeof import('./core/utils/src/debounce')['debounce']
|
|
175
|
-
const debouncedRef: typeof import('./core/utils/src/vendors')['debouncedRef']
|
|
176
|
-
const debouncedWatch: typeof import('./core/utils/src/vendors')['debouncedWatch']
|
|
177
|
-
const debug: typeof import('../config/debug')['default']
|
|
178
|
-
const decrypt: typeof import('./core/security/src/crypt')['decrypt']
|
|
179
|
-
const deepMerge: typeof import('./core/objects/src/index')['deepMerge']
|
|
180
|
-
const defaultDocument: typeof import('./core/utils/src/vendors')['defaultDocument']
|
|
181
|
-
const defaultLocation: typeof import('./core/utils/src/vendors')['defaultLocation']
|
|
182
|
-
const defaultNavigator: typeof import('./core/utils/src/vendors')['defaultNavigator']
|
|
183
|
-
const defaultWindow: typeof import('./core/utils/src/vendors')['defaultWindow']
|
|
184
|
-
const defineApp: typeof import('./core/utils/src/config')['defineApp']
|
|
185
|
-
const defineAsyncComponent: typeof import('vue')['defineAsyncComponent']
|
|
186
|
-
const defineCache: typeof import('./core/utils/src/config')['defineCache']
|
|
187
|
-
const defineCdn: typeof import('./core/utils/src/config')['defineCdn']
|
|
188
|
-
const defineCli: typeof import('./core/utils/src/config')['defineCli']
|
|
189
|
-
const defineComponent: typeof import('vue')['defineComponent']
|
|
190
|
-
const defineCronJobsConfig: typeof import('./core/utils/src/config')['defineCronJobsConfig']
|
|
191
|
-
const defineDatabase: typeof import('./core/utils/src/config')['defineDatabase']
|
|
192
|
-
const defineDebugConfig: typeof import('./core/utils/src/config')['defineDebugConfig']
|
|
193
|
-
const defineDns: typeof import('./core/utils/src/config')['defineDns']
|
|
194
|
-
const defineEmailConfig: typeof import('./core/utils/src/config')['defineEmailConfig']
|
|
195
|
-
const defineEvents: typeof import('./core/utils/src/config')['defineEvents']
|
|
196
|
-
const defineGit: typeof import('./core/utils/src/config')['defineGit']
|
|
197
|
-
const defineHashing: typeof import('./core/utils/src/config')['defineHashing']
|
|
198
|
-
const defineLibrary: typeof import('./core/utils/src/config')['defineLibrary']
|
|
199
|
-
const defineModel: typeof import('./core/utils/src/config')['defineModel']
|
|
200
|
-
const defineNotification: typeof import('./core/utils/src/config')['defineNotification']
|
|
201
|
-
const definePage: typeof import('./core/utils/src/config')['definePage']
|
|
202
|
-
const definePayment: typeof import('./core/utils/src/config')['definePayment']
|
|
203
|
-
const defineSearchEngine: typeof import('./core/utils/src/config')['defineSearchEngine']
|
|
204
|
-
const defineServices: typeof import('./core/utils/src/config')['defineServices']
|
|
205
|
-
const defineStorage: typeof import('./core/utils/src/config')['defineStorage']
|
|
206
|
-
const defineUi: typeof import('./core/utils/src/config')['defineUi']
|
|
207
|
-
const del: typeof import('./core/utils/src/delete')['del']
|
|
208
|
-
const deleteEmptyFolders: typeof import('./core/storage/src/index')['deleteEmptyFolders']
|
|
209
|
-
const deleteFiles: typeof import('./core/storage/src/index')['deleteFiles']
|
|
210
|
-
const deleteFolder: typeof import('./core/storage/src/index')['deleteFolder']
|
|
211
|
-
const delimiter: typeof import('./core/path/src/index')['delimiter']
|
|
212
|
-
const describe: typeof import('vitest')['describe']
|
|
213
|
-
const desktopPath: typeof import('./core/path/src/index')['desktopPath']
|
|
214
|
-
const detectIndent: typeof import('./core/strings/src/utils')['detectIndent']
|
|
215
|
-
const detectNewline: typeof import('./core/strings/src/utils')['detectNewline']
|
|
216
|
-
const determineDebugLevel: typeof import('./core/utils/src/helpers')['determineDebugLevel']
|
|
217
|
-
const determineResetPreset: typeof import('./core/utils/src/helpers')['determineResetPreset']
|
|
218
|
-
const determineState: typeof import('./core/search-engine/src/helpers')['determineState']
|
|
219
|
-
const developmentPath: typeof import('./core/path/src/index')['developmentPath']
|
|
220
|
-
const dim: typeof import('./core/cli/src/utilities')['dim']
|
|
221
|
-
const dinero: typeof import('./core/utils/src/currency')['dinero']
|
|
222
|
-
const dirname: typeof import('./core/path/src/index')['dirname']
|
|
223
|
-
const discord: typeof import('./core/chat/src/index')['discord']
|
|
224
|
-
const dispatch: typeof import('./core/events/src/index')['dispatch']
|
|
225
|
-
const dns: typeof import('../config/dns')['default']
|
|
226
|
-
const dnsPath: typeof import('./core/path/src/index')['dnsPath']
|
|
227
|
-
const docs: typeof import('../config/docs')['default']
|
|
228
|
-
const docsPath: typeof import('./core/path/src/index')['docsPath']
|
|
229
|
-
const doesFolderExist: typeof import('./core/storage/src/index')['doesFolderExist']
|
|
230
|
-
const doesNotContain: typeof import('./core/arrays/src/contains')['doesNotContain']
|
|
231
|
-
const dotCase: typeof import('./core/strings/src/case')['dotCase']
|
|
232
|
-
const dump: typeof import('@stacksjs/logging')['dump']
|
|
233
|
-
const dynamodb: typeof import('./core/cache/src/index')['dynamodb']
|
|
234
|
-
const eagerComputed: typeof import('./core/utils/src/vendors')['eagerComputed']
|
|
235
|
-
const effect: typeof import('./core/signals/src/index')['effect']
|
|
236
|
-
const effectScope: typeof import('vue')['effectScope']
|
|
237
|
-
const email: typeof import('./core/validation/src/validate')['email']
|
|
238
|
-
const emailPath: typeof import('./core/path/src/index')['emailPath']
|
|
239
|
-
const encrypt: typeof import('./core/security/src/crypt')['encrypt']
|
|
240
|
-
const ensurePrefix: typeof import('./core/strings/src/utils')['ensurePrefix']
|
|
241
|
-
const ensureSuffix: typeof import('./core/strings/src/utils')['ensureSuffix']
|
|
242
|
-
const env: typeof import('./core/validation/src/types/env')['env']
|
|
243
|
-
const envSchema: typeof import('./core/validation/src/types/env')['envSchema']
|
|
244
|
-
const equal: typeof import('./core/utils/src/currency')['equal']
|
|
245
|
-
const err: typeof import('./core/error-handling/src/index')['err']
|
|
246
|
-
const errAsync: typeof import('./core/error-handling/src/index')['errAsync']
|
|
247
|
-
const errorHandlingPath: typeof import('./core/path/src/index')['errorHandlingPath']
|
|
248
|
-
const eslint: typeof import('./core/lint/src/index')['eslint']
|
|
249
|
-
const events: typeof import('./core/events/src/index')['events']
|
|
250
|
-
const eventsPath: typeof import('./core/path/src/index')['eventsPath']
|
|
251
|
-
const examplesPath: typeof import('./core/path/src/index')['examplesPath']
|
|
252
|
-
const exec: typeof import('./core/cli/src/run')['exec']
|
|
253
|
-
const execSync: typeof import('./core/cli/src/run')['execSync']
|
|
254
|
-
const executeTransition: typeof import('./core/utils/src/vendors')['executeTransition']
|
|
255
|
-
const expect: typeof import('vitest')['expect']
|
|
256
|
-
const expo: typeof import('./core/push/src/index')['expo']
|
|
257
|
-
const extendRef: typeof import('./core/utils/src/vendors')['extendRef']
|
|
258
|
-
const extname: typeof import('./core/path/src/index')['extname']
|
|
259
|
-
const faker: typeof import('./core/faker/src/index')['faker']
|
|
260
|
-
const fakerPath: typeof import('./core/path/src/index')['fakerPath']
|
|
261
|
-
const fcm: typeof import('./core/push/src/index')['fcm']
|
|
262
|
-
const feature: typeof import('./core/testing/src/index')['feature']
|
|
263
|
-
const filterName: typeof import('./core/search-engine/src/index')['filterName']
|
|
264
|
-
const filters: typeof import('./core/search-engine/src/index')['filters']
|
|
265
|
-
const flatten: typeof import('./core/arrays/src/helpers')['flatten']
|
|
266
|
-
const format: typeof import('./core/path/src/index')['format']
|
|
267
|
-
const formatTimeAgo: typeof import('./core/utils/src/vendors')['formatTimeAgo']
|
|
268
|
-
const frameworkPath: typeof import('./core/path/src/index')['frameworkPath']
|
|
269
|
-
const frameworkVersion: typeof import('./core/utils/src/helpers')['frameworkVersion']
|
|
270
|
-
const fromPromise: typeof import('./core/error-handling/src/index')['fromPromise']
|
|
271
|
-
const fromSafePromise: typeof import('./core/error-handling/src/index')['fromSafePromise']
|
|
272
|
-
const fromThrowable: typeof import('./core/error-handling/src/index')['fromThrowable']
|
|
273
|
-
const frontendEnvSchema: typeof import('./core/validation/src/types/env')['frontendEnvSchema']
|
|
274
|
-
const fs: typeof import('./core/storage/src/index')['fs']
|
|
275
|
-
const functionsPath: typeof import('./core/path/src/index')['functionsPath']
|
|
276
|
-
const generateAppKey: typeof import('./core/security/src/key')['generateAppKey']
|
|
277
|
-
const generateFactoryFile: typeof import('./core/database/src/factory/index')['generateFactoryFile']
|
|
278
|
-
const getCurrentInstance: typeof import('vue')['getCurrentInstance']
|
|
279
|
-
const getCurrentScope: typeof import('vue')['getCurrentScope']
|
|
280
|
-
const getEnv: typeof import('./core/validation/src/types/env')['getEnv']
|
|
281
|
-
const getSSRHandler: typeof import('./core/utils/src/vendors')['getSSRHandler']
|
|
282
|
-
const getTypeName: typeof import('./core/utils/src/base')['getTypeName']
|
|
283
|
-
const git: typeof import('../config/git')['default']
|
|
284
|
-
const gitPath: typeof import('./core/path/src/index')['gitPath']
|
|
285
|
-
const goToNextPage: typeof import('./core/search-engine/src/index')['goToNextPage']
|
|
286
|
-
const goToPage: typeof import('./core/search-engine/src/index')['goToPage']
|
|
287
|
-
const goToPrevPage: typeof import('./core/search-engine/src/index')['goToPrevPage']
|
|
288
|
-
const gray: typeof import('./core/cli/src/utilities')['gray']
|
|
289
|
-
const greaterThan: typeof import('./core/utils/src/currency')['greaterThan']
|
|
290
|
-
const greaterThanOrEqual: typeof import('./core/utils/src/currency')['greaterThanOrEqual']
|
|
291
|
-
const green: typeof import('./core/cli/src/utilities')['green']
|
|
292
|
-
const gupshup: typeof import('./core/sms/src/index')['gupshup']
|
|
293
|
-
const h: typeof import('vue')['h']
|
|
294
|
-
const handleError: typeof import('./core/error-handling/src/index')['handleError']
|
|
295
|
-
const hasComponents: typeof import('./core/storage/src/index')['hasComponents']
|
|
296
|
-
const hasFiles: typeof import('./core/storage/src/index')['hasFiles']
|
|
297
|
-
const hasFunctions: typeof import('./core/storage/src/index')['hasFunctions']
|
|
298
|
-
const hasOwnProperty: typeof import('./core/objects/src/index')['hasOwnProperty']
|
|
299
|
-
const hasScript: typeof import('./core/utils/src/helpers')['hasScript']
|
|
300
|
-
const hasSubUnits: typeof import('./core/utils/src/currency')['hasSubUnits']
|
|
301
|
-
const hashing: typeof import('../config/hashing')['default']
|
|
302
|
-
const haveSameAmount: typeof import('./core/utils/src/currency')['haveSameAmount']
|
|
303
|
-
const haveSameCurrency: typeof import('./core/utils/src/currency')['haveSameCurrency']
|
|
304
|
-
const headerCase: typeof import('./core/strings/src/case')['headerCase']
|
|
305
|
-
const healthPath: typeof import('./core/path/src/index')['healthPath']
|
|
306
|
-
const hidden: typeof import('./core/cli/src/utilities')['hidden']
|
|
307
|
-
const hits: typeof import('./core/search-engine/src/index')['hits']
|
|
308
|
-
const ignorableWatch: typeof import('./core/utils/src/vendors')['ignorableWatch']
|
|
309
|
-
const increment: typeof import('../resources/functions/counter')['increment']
|
|
310
|
-
const index: typeof import('./core/search-engine/src/index')['index']
|
|
311
|
-
const inject: typeof import('vue')['inject']
|
|
312
|
-
const installIfVersionMismatch: typeof import('./core/utils/src/helpers')['installIfVersionMismatch']
|
|
313
|
-
const installPackage: typeof import('./core/cli/src/actions/install')['installPackage']
|
|
314
|
-
const installStack: typeof import('./core/cli/src/actions/install')['installStack']
|
|
315
|
-
const intro: typeof import('./core/cli/src/helpers')['intro']
|
|
316
|
-
const inverse: typeof import('./core/cli/src/utilities')['inverse']
|
|
317
|
-
const isAbsolute: typeof import('./core/path/src/index')['isAbsolute']
|
|
318
|
-
const isAlpha: typeof import('./core/validation/src/is')['isAlpha']
|
|
319
|
-
const isAlphanumeric: typeof import('./core/validation/src/is')['isAlphanumeric']
|
|
320
|
-
const isAppKeySet: typeof import('./core/utils/src/helpers')['isAppKeySet']
|
|
321
|
-
const isArray: typeof import('./core/validation/src/is')['isArray']
|
|
322
|
-
const isAscii: typeof import('./core/validation/src/is')['isAscii']
|
|
323
|
-
const isBase32: typeof import('./core/validation/src/is')['isBase32']
|
|
324
|
-
const isBase64: typeof import('./core/validation/src/is')['isBase64']
|
|
325
|
-
const isBoolean: typeof import('./core/validation/src/is')['isBoolean']
|
|
326
|
-
const isBrowser: typeof import('./core/validation/src/is')['isBrowser']
|
|
327
|
-
const isByteLength: typeof import('./core/validation/src/is')['isByteLength']
|
|
328
|
-
const isCreditCard: typeof import('./core/validation/src/is')['isCreditCard']
|
|
329
|
-
const isCurrency: typeof import('./core/validation/src/is')['isCurrency']
|
|
330
|
-
const isDark: typeof import('../resources/functions/dark')['isDark']
|
|
331
|
-
const isDataURI: typeof import('./core/validation/src/is')['isDataURI']
|
|
332
|
-
const isDate: typeof import('./core/validation/src/is')['isDate']
|
|
333
|
-
const isDeepEqual: typeof import('./core/utils/src/equal')['isDeepEqual']
|
|
334
|
-
const isDef: typeof import('./core/validation/src/is')['isDef']
|
|
335
|
-
const isDefined: typeof import('./core/utils/src/vendors')['isDefined']
|
|
336
|
-
const isEmail: typeof import('./core/validation/src/is')['isEmail']
|
|
337
|
-
const isEven: typeof import('./core/validation/src/is')['isEven']
|
|
338
|
-
const isEvenOrOdd: typeof import('./core/validation/src/is')['isEvenOrOdd']
|
|
339
|
-
const isFQDN: typeof import('./core/validation/src/is')['isFQDN']
|
|
340
|
-
const isFile: typeof import('./core/storage/src/index')['isFile']
|
|
341
|
-
const isFloat: typeof import('./core/validation/src/is')['isFloat']
|
|
342
|
-
const isFolder: typeof import('./core/storage/src/index')['isFolder']
|
|
343
|
-
const isFullWidth: typeof import('./core/validation/src/is')['isFullWidth']
|
|
344
|
-
const isFunction: typeof import('./core/validation/src/is')['isFunction']
|
|
345
|
-
const isHSL: typeof import('./core/validation/src/is')['isHSL']
|
|
346
|
-
const isHalfWidth: typeof import('./core/validation/src/is')['isHalfWidth']
|
|
347
|
-
const isHash: typeof import('./core/validation/src/is')['isHash']
|
|
348
|
-
const isHexColor: typeof import('./core/validation/src/is')['isHexColor']
|
|
349
|
-
const isHexadecimal: typeof import('./core/validation/src/is')['isHexadecimal']
|
|
350
|
-
const isIBAN: typeof import('./core/validation/src/is')['isIBAN']
|
|
351
|
-
const isIP: typeof import('./core/validation/src/is')['isIP']
|
|
352
|
-
const isIPRange: typeof import('./core/validation/src/is')['isIPRange']
|
|
353
|
-
const isISBN: typeof import('./core/validation/src/is')['isISBN']
|
|
354
|
-
const isISIN: typeof import('./core/validation/src/is')['isISIN']
|
|
355
|
-
const isISO31661Alpha2: typeof import('./core/validation/src/is')['isISO31661Alpha2']
|
|
356
|
-
const isISO31661Alpha3: typeof import('./core/validation/src/is')['isISO31661Alpha3']
|
|
357
|
-
const isISO8601: typeof import('./core/validation/src/is')['isISO8601']
|
|
358
|
-
const isISRC: typeof import('./core/validation/src/is')['isISRC']
|
|
359
|
-
const isISSN: typeof import('./core/validation/src/is')['isISSN']
|
|
360
|
-
const isIdentityCard: typeof import('./core/validation/src/is')['isIdentityCard']
|
|
361
|
-
const isInteger: typeof import('./core/validation/src/is')['isInteger']
|
|
362
|
-
const isIntegerOrFloat: typeof import('./core/validation/src/is')['isIntegerOrFloat']
|
|
363
|
-
const isIpv6: typeof import('./core/utils/src/helpers')['isIpv6']
|
|
364
|
-
const isJSON: typeof import('./core/validation/src/is')['isJSON']
|
|
365
|
-
const isJWT: typeof import('./core/validation/src/is')['isJWT']
|
|
366
|
-
const isKeyOf: typeof import('./core/objects/src/index')['isKeyOf']
|
|
367
|
-
const isLatLong: typeof import('./core/validation/src/is')['isLatLong']
|
|
368
|
-
const isLatitude: typeof import('./core/validation/src/is')['isLatitude']
|
|
369
|
-
const isLongitude: typeof import('./core/validation/src/is')['isLongitude']
|
|
370
|
-
const isMACAddress: typeof import('./core/validation/src/is')['isMACAddress']
|
|
371
|
-
const isManifest: typeof import('./core/utils/src/helpers')['isManifest']
|
|
372
|
-
const isMap: typeof import('./core/validation/src/is')['isMap']
|
|
373
|
-
const isMimeType: typeof import('./core/validation/src/is')['isMimeType']
|
|
374
|
-
const isMobilePhone: typeof import('./core/validation/src/is')['isMobilePhone']
|
|
375
|
-
const isMoney: typeof import('./core/validation/src/is')['isMoney']
|
|
376
|
-
const isNegative: typeof import('./core/validation/src/is')['isNegative']
|
|
377
|
-
const isNull: typeof import('./core/validation/src/is')['isNull']
|
|
378
|
-
const isNumber: typeof import('./core/validation/src/is')['isNumber']
|
|
379
|
-
const isNumeric: typeof import('./core/validation/src/is')['isNumeric']
|
|
380
|
-
const isObject: typeof import('./core/validation/src/is')['isObject']
|
|
381
|
-
const isOdd: typeof import('./core/validation/src/is')['isOdd']
|
|
382
|
-
const isOptionalString: typeof import('./core/utils/src/helpers')['isOptionalString']
|
|
383
|
-
const isPlural: typeof import('./core/strings/src/pluralize')['isPlural']
|
|
384
|
-
const isPositive: typeof import('./core/validation/src/is')['isPositive']
|
|
385
|
-
const isPositiveOrNegative: typeof import('./core/validation/src/is')['isPositiveOrNegative']
|
|
386
|
-
const isPostalCode: typeof import('./core/validation/src/is')['isPostalCode']
|
|
387
|
-
const isPrimitive: typeof import('./core/validation/src/is')['isPrimitive']
|
|
388
|
-
const isProjectCreated: typeof import('./core/utils/src/helpers')['isProjectCreated']
|
|
389
|
-
const isPromise: typeof import('./core/validation/src/is')['isPromise']
|
|
390
|
-
const isProxy: typeof import('vue')['isProxy']
|
|
391
|
-
const isReactive: typeof import('vue')['isReactive']
|
|
392
|
-
const isReadonly: typeof import('vue')['isReadonly']
|
|
393
|
-
const isRef: typeof import('vue')['isRef']
|
|
394
|
-
const isRegExp: typeof import('./core/validation/src/is')['isRegExp']
|
|
395
|
-
const isServer: typeof import('./core/validation/src/is')['isServer']
|
|
396
|
-
const isSet: typeof import('./core/validation/src/is')['isSet']
|
|
397
|
-
const isSingular: typeof import('./core/strings/src/pluralize')['isSingular']
|
|
398
|
-
const isString: typeof import('./core/validation/src/is')['isString']
|
|
399
|
-
const isStrongPassword: typeof import('./core/validation/src/is')['isStrongPassword']
|
|
400
|
-
const isSymbol: typeof import('./core/validation/src/is')['isSymbol']
|
|
401
|
-
const isTruthy: typeof import('./core/utils/src/guards')['isTruthy']
|
|
402
|
-
const isURL: typeof import('./core/validation/src/is')['isURL']
|
|
403
|
-
const isUUID: typeof import('./core/validation/src/is')['isUUID']
|
|
404
|
-
const isUndefined: typeof import('./core/validation/src/is')['isUndefined']
|
|
405
|
-
const isWindow: typeof import('./core/validation/src/is')['isWindow']
|
|
406
|
-
const isZero: typeof import('./core/utils/src/currency')['isZero']
|
|
407
|
-
const it: typeof import('vitest')['it']
|
|
408
|
-
const italic: typeof import('./core/cli/src/utilities')['italic']
|
|
409
|
-
const join: typeof import('./core/path/src/index')['join']
|
|
410
|
-
const kebabCase: typeof import('./core/strings/src/case')['kebabCase']
|
|
411
|
-
const langPath: typeof import('./core/path/src/index')['langPath']
|
|
412
|
-
const last: typeof import('./core/arrays/src/helpers')['last']
|
|
413
|
-
const lastPageNumber: typeof import('./core/search-engine/src/index')['lastPageNumber']
|
|
414
|
-
const lessThan: typeof import('./core/utils/src/currency')['lessThan']
|
|
415
|
-
const lessThanOrEqual: typeof import('./core/utils/src/currency')['lessThanOrEqual']
|
|
416
|
-
const library: typeof import('../config/library')['default']
|
|
417
|
-
const libraryEntryPath: typeof import('./core/path/src/index')['libraryEntryPath']
|
|
418
|
-
const libsEntriesPath: typeof import('./core/path/src/index')['libsEntriesPath']
|
|
419
|
-
const libsPath: typeof import('./core/path/src/index')['libsPath']
|
|
420
|
-
const lightBlue: typeof import('./core/cli/src/utilities')['lightBlue']
|
|
421
|
-
const lightCyan: typeof import('./core/cli/src/utilities')['lightCyan']
|
|
422
|
-
const lightGray: typeof import('./core/cli/src/utilities')['lightGray']
|
|
423
|
-
const lightGreen: typeof import('./core/cli/src/utilities')['lightGreen']
|
|
424
|
-
const lightMagenta: typeof import('./core/cli/src/utilities')['lightMagenta']
|
|
425
|
-
const lightRed: typeof import('./core/cli/src/utilities')['lightRed']
|
|
426
|
-
const lightYellow: typeof import('./core/cli/src/utilities')['lightYellow']
|
|
427
|
-
const link: typeof import('./core/cli/src/utilities')['link']
|
|
428
|
-
const lintPath: typeof import('./core/path/src/index')['lintPath']
|
|
429
|
-
const listen: typeof import('./core/events/src/index')['listen']
|
|
430
|
-
const log: typeof import('./core/cli/src/console')['log']
|
|
431
|
-
const loggingPath: typeof import('./core/path/src/index')['loggingPath']
|
|
432
|
-
const logicNot: typeof import('./core/utils/src/math')['logicNot']
|
|
433
|
-
const logicOr: typeof import('./core/utils/src/math')['logicOr']
|
|
434
|
-
const logsPath: typeof import('./core/path/src/index')['logsPath']
|
|
435
|
-
const loop: typeof import('./core/utils/src/base')['loop']
|
|
436
|
-
const magenta: typeof import('./core/cli/src/utilities')['magenta']
|
|
437
|
-
const makeHash: typeof import('./core/security/src/hash')['makeHash']
|
|
438
|
-
const mapGamepadToXbox360Controller: typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']
|
|
439
|
-
const markRaw: typeof import('vue')['markRaw']
|
|
440
|
-
const maximum: typeof import('./core/utils/src/currency')['maximum']
|
|
441
|
-
const md5Encode: typeof import('./core/security/src/hash')['md5Encode']
|
|
442
|
-
const median: typeof import('./core/arrays/src/math')['median']
|
|
443
|
-
const memcached: typeof import('./core/cache/src/index')['memcached']
|
|
444
|
-
const mergeArrayable: typeof import('./core/arrays/src/helpers')['mergeArrayable']
|
|
445
|
-
const migrate: typeof import('./core/database/src/migrations/index')['migrate']
|
|
446
|
-
const minimum: typeof import('./core/utils/src/currency')['minimum']
|
|
447
|
-
const mitt: typeof import('./core/events/src/index')['mitt']
|
|
448
|
-
const mode: typeof import('./core/arrays/src/math')['mode']
|
|
449
|
-
const modelsPath: typeof import('./core/path/src/index')['modelsPath']
|
|
450
|
-
const modulesPath: typeof import('./core/path/src/index')['modulesPath']
|
|
451
|
-
const money: typeof import('./core/utils/src/currency')['money']
|
|
452
|
-
const move: typeof import('./core/arrays/src/helpers')['move']
|
|
453
|
-
const multiply: typeof import('./core/utils/src/currency')['multiply']
|
|
454
|
-
const nexmo: typeof import('./core/sms/src/index')['nexmo']
|
|
455
|
-
const nextTick: typeof import('vue')['nextTick']
|
|
456
|
-
const noCase: typeof import('./core/strings/src/case')['noCase']
|
|
457
|
-
const noNull: typeof import('./core/utils/src/guards')['noNull']
|
|
458
|
-
const normalize: typeof import('./core/path/src/index')['normalize']
|
|
459
|
-
const normalizeScale: typeof import('./core/utils/src/currency')['normalizeScale']
|
|
460
|
-
const normalizeString: typeof import('./core/path/src/index')['normalizeString']
|
|
461
|
-
const not: typeof import('./core/utils/src/math')['not']
|
|
462
|
-
const notNullish: typeof import('./core/utils/src/guards')['notNullish']
|
|
463
|
-
const notUndefined: typeof import('./core/utils/src/guards')['notUndefined']
|
|
464
|
-
const notification: typeof import('../config/notification')['default']
|
|
465
|
-
const notificationsPath: typeof import('./core/path/src/index')['notificationsPath']
|
|
466
|
-
const now: typeof import('./core/datetime/src/index')['now']
|
|
467
|
-
const number: typeof import('./core/validation/src/validate')['number']
|
|
468
|
-
const object: typeof import('./core/validation/src/validate')['object']
|
|
469
|
-
const objectEntries: typeof import('./core/objects/src/index')['objectEntries']
|
|
470
|
-
const objectKeys: typeof import('./core/objects/src/index')['objectKeys']
|
|
471
|
-
const objectMap: typeof import('./core/objects/src/index')['objectMap']
|
|
472
|
-
const objectPick: typeof import('./core/objects/src/index')['objectPick']
|
|
473
|
-
const objectsPath: typeof import('./core/path/src/index')['objectsPath']
|
|
474
|
-
const off: typeof import('./core/events/src/index')['off']
|
|
475
|
-
const ok: typeof import('./core/error-handling/src/index')['ok']
|
|
476
|
-
const okAsync: typeof import('./core/error-handling/src/index')['okAsync']
|
|
477
|
-
const onActivated: typeof import('vue')['onActivated']
|
|
478
|
-
const onBeforeMount: typeof import('vue')['onBeforeMount']
|
|
479
|
-
const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave']
|
|
480
|
-
const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate']
|
|
481
|
-
const onBeforeUnmount: typeof import('vue')['onBeforeUnmount']
|
|
482
|
-
const onBeforeUpdate: typeof import('vue')['onBeforeUpdate']
|
|
483
|
-
const onClickOutside: typeof import('./core/utils/src/vendors')['onClickOutside']
|
|
484
|
-
const onDeactivated: typeof import('vue')['onDeactivated']
|
|
485
|
-
const onErrorCaptured: typeof import('vue')['onErrorCaptured']
|
|
486
|
-
const onKeyDown: typeof import('./core/utils/src/vendors')['onKeyDown']
|
|
487
|
-
const onKeyPressed: typeof import('./core/utils/src/vendors')['onKeyPressed']
|
|
488
|
-
const onKeyStroke: typeof import('./core/utils/src/vendors')['onKeyStroke']
|
|
489
|
-
const onKeyUp: typeof import('./core/utils/src/vendors')['onKeyUp']
|
|
490
|
-
const onLongPress: typeof import('./core/utils/src/vendors')['onLongPress']
|
|
491
|
-
const onMounted: typeof import('vue')['onMounted']
|
|
492
|
-
const onRenderTracked: typeof import('vue')['onRenderTracked']
|
|
493
|
-
const onRenderTriggered: typeof import('vue')['onRenderTriggered']
|
|
494
|
-
const onScopeDispose: typeof import('vue')['onScopeDispose']
|
|
495
|
-
const onServerPrefetch: typeof import('vue')['onServerPrefetch']
|
|
496
|
-
const onStartTyping: typeof import('./core/utils/src/vendors')['onStartTyping']
|
|
497
|
-
const onUnmounted: typeof import('vue')['onUnmounted']
|
|
498
|
-
const onUpdated: typeof import('vue')['onUpdated']
|
|
499
|
-
const onboardingPath: typeof import('./core/path/src/index')['onboardingPath']
|
|
500
|
-
const or: typeof import('./core/utils/src/math')['or']
|
|
501
|
-
const ormPath: typeof import('./core/path/src/index')['ormPath']
|
|
502
|
-
const outro: typeof import('./core/cli/src/helpers')['outro']
|
|
503
|
-
const p: typeof import('./core/utils/src/p')['p']
|
|
504
|
-
const packageJsonPath: typeof import('./core/path/src/index')['packageJsonPath']
|
|
505
|
-
const pagesPath: typeof import('./core/path/src/index')['pagesPath']
|
|
506
|
-
const paramCase: typeof import('./core/strings/src/case')['paramCase']
|
|
507
|
-
const parse: typeof import('./core/path/src/index')['parse']
|
|
508
|
-
const parseArgs: typeof import('./core/cli/src/parse')['parseArgs']
|
|
509
|
-
const parseArgv: typeof import('./core/cli/src/parse')['parseArgv']
|
|
510
|
-
const parseOptions: typeof import('./core/cli/src/parse')['parseOptions']
|
|
511
|
-
const parseYaml: typeof import('./core/utils/src/helpers')['parseYaml']
|
|
512
|
-
const partition: typeof import('./core/arrays/src/helpers')['partition']
|
|
513
|
-
const pascalCase: typeof import('./core/strings/src/case')['pascalCase']
|
|
514
|
-
const path: typeof import('./core/path/src/index')['path']
|
|
515
|
-
const pathCase: typeof import('./core/strings/src/case')['pathCase']
|
|
516
|
-
const pathPath: typeof import('./core/path/src/index')['pathPath']
|
|
517
|
-
const payment: typeof import('../config/payment')['default']
|
|
518
|
-
const paymentsPath: typeof import('./core/path/src/index')['paymentsPath']
|
|
519
|
-
const perPage: typeof import('./core/search-engine/src/index')['perPage']
|
|
520
|
-
const plivo: typeof import('./core/sms/src/index')['plivo']
|
|
521
|
-
const plural: typeof import('./core/strings/src/pluralize')['plural']
|
|
522
|
-
const preferredDark: typeof import('../resources/functions/dark')['preferredDark']
|
|
523
|
-
const presetForms: typeof import('@stacksjs/ui')['presetForms']
|
|
524
|
-
const projectConfigPath: typeof import('./core/path/src/index')['projectConfigPath']
|
|
525
|
-
const projectPath: typeof import('./core/path/src/index')['projectPath']
|
|
526
|
-
const projectStoragePath: typeof import('./core/path/src/index')['projectStoragePath']
|
|
527
|
-
const prompt: typeof import('./core/cli/src/console')['prompt']
|
|
528
|
-
const provide: typeof import('vue')['provide']
|
|
529
|
-
const pushPath: typeof import('./core/path/src/index')['pushPath']
|
|
530
|
-
const query: typeof import('./core/search-engine/src/index')['query']
|
|
531
|
-
const queryBuilderPath: typeof import('./core/path/src/index')['queryBuilderPath']
|
|
532
|
-
const queuePath: typeof import('./core/path/src/index')['queuePath']
|
|
533
|
-
const rand: typeof import('./core/utils/src/math')['rand']
|
|
534
|
-
const randomStr: typeof import('./core/strings/src/utils')['randomStr']
|
|
535
|
-
const range: typeof import('./core/arrays/src/helpers')['range']
|
|
536
|
-
const reactive: typeof import('vue')['reactive']
|
|
537
|
-
const readJsonFile: typeof import('./core/storage/src/index')['readJsonFile']
|
|
538
|
-
const readPackageJson: typeof import('./core/storage/src/index')['readPackageJson']
|
|
539
|
-
const readTextFile: typeof import('./core/storage/src/index')['readTextFile']
|
|
540
|
-
const readonly: typeof import('vue')['readonly']
|
|
541
|
-
const realtimePath: typeof import('./core/path/src/index')['realtimePath']
|
|
542
|
-
const red: typeof import('./core/cli/src/utilities')['red']
|
|
543
|
-
const redis: typeof import('./core/cache/src/index')['redis']
|
|
544
|
-
const ref: typeof import('vue')['ref']
|
|
545
|
-
const relative: typeof import('./core/path/src/index')['relative']
|
|
546
|
-
const remove: typeof import('./core/arrays/src/helpers')['remove']
|
|
547
|
-
const renderHeadToString: typeof import('./core/utils/src/vendors')['renderHeadToString']
|
|
548
|
-
const reset: typeof import('./core/cli/src/utilities')['reset']
|
|
549
|
-
const resolve: typeof import('./core/path/src/index')['resolve']
|
|
550
|
-
const resolveComponent: typeof import('vue')['resolveComponent']
|
|
551
|
-
const resourcesPath: typeof import('./core/path/src/index')['resourcesPath']
|
|
552
|
-
const results: typeof import('./core/search-engine/src/index')['results']
|
|
553
|
-
const rimraf: typeof import('./core/utils/src/delete')['rimraf']
|
|
554
|
-
const root: typeof import('./core/signals/src/index')['root']
|
|
555
|
-
const route: typeof import('./core/router/src/index')['route']
|
|
556
|
-
const routerPath: typeof import('./core/path/src/index')['routerPath']
|
|
557
|
-
const routesPath: typeof import('./core/path/src/index')['routesPath']
|
|
558
|
-
const runCommand: typeof import('./core/cli/src/run')['runCommand']
|
|
559
|
-
const runCommands: typeof import('./core/cli/src/run')['runCommands']
|
|
560
|
-
const runNpmScript: typeof import('./core/utils/src/helpers')['runNpmScript']
|
|
561
|
-
const runtimePath: typeof import('./core/path/src/index')['runtimePath']
|
|
562
|
-
const sample: typeof import('./core/arrays/src/helpers')['sample']
|
|
563
|
-
const schedulerPath: typeof import('./core/path/src/index')['schedulerPath']
|
|
564
|
-
const scriptsPath: typeof import('./core/path/src/index')['scriptsPath']
|
|
565
|
-
const searchEngine: typeof import('../config/search-engine')['default']
|
|
566
|
-
const searchEnginePath: typeof import('./core/path/src/index')['searchEnginePath']
|
|
567
|
-
const searchFilters: typeof import('./core/search-engine/src/index')['searchFilters']
|
|
568
|
-
const searchParams: typeof import('./core/search-engine/src/index')['searchParams']
|
|
569
|
-
const securityPath: typeof import('./core/path/src/index')['securityPath']
|
|
570
|
-
const seed: typeof import('./core/database/src/seeder/index')['seed']
|
|
571
|
-
const semver: typeof import('./core/utils/src/versions')['semver']
|
|
572
|
-
const sentenceCase: typeof import('./core/strings/src/case')['sentenceCase']
|
|
573
|
-
const sep: typeof import('./core/path/src/index')['sep']
|
|
574
|
-
const serverPath: typeof import('./core/path/src/index')['serverPath']
|
|
575
|
-
const serverlessPath: typeof import('./core/path/src/index')['serverlessPath']
|
|
576
|
-
const services: typeof import('../config/services')['default']
|
|
577
|
-
const setEnvValue: typeof import('./core/utils/src/helpers')['setEnvValue']
|
|
578
|
-
const setSSRHandler: typeof import('./core/utils/src/vendors')['setSSRHandler']
|
|
579
|
-
const setTotalHits: typeof import('./core/search-engine/src/index')['setTotalHits']
|
|
580
|
-
const settingsPath: typeof import('./core/path/src/index')['settingsPath']
|
|
581
|
-
const shallowReactive: typeof import('vue')['shallowReactive']
|
|
582
|
-
const shallowReadonly: typeof import('vue')['shallowReadonly']
|
|
583
|
-
const shallowRef: typeof import('vue')['shallowRef']
|
|
584
|
-
const shuffle: typeof import('./core/arrays/src/helpers')['shuffle']
|
|
585
|
-
const signal: typeof import('./core/signals/src/index')['signal']
|
|
586
|
-
const signalsPath: typeof import('./core/path/src/index')['signalsPath']
|
|
587
|
-
const singular: typeof import('./core/strings/src/pluralize')['singular']
|
|
588
|
-
const slack: typeof import('./core/chat/src/index')['slack']
|
|
589
|
-
const slash: typeof import('./core/strings/src/utils')['slash']
|
|
590
|
-
const sleep: typeof import('./core/utils/src/promise')['sleep']
|
|
591
|
-
const slug: typeof import('./core/strings/src/utils')['slug']
|
|
592
|
-
const slugPath: typeof import('./core/path/src/index')['slugPath']
|
|
593
|
-
const sms77: typeof import('./core/sms/src/index')['sms77']
|
|
594
|
-
const smsPath: typeof import('./core/path/src/index')['smsPath']
|
|
595
|
-
const snakeCase: typeof import('./core/strings/src/case')['snakeCase']
|
|
596
|
-
const sns: typeof import('./core/sms/src/index')['sns']
|
|
597
|
-
const sort: typeof import('./core/search-engine/src/index')['sort']
|
|
598
|
-
const sorts: typeof import('./core/search-engine/src/index')['sorts']
|
|
599
|
-
const spawn: typeof import('./core/cli/src/command')['spawn']
|
|
600
|
-
const spinner: typeof import('./core/cli/src/spinner')['spinner']
|
|
601
|
-
const sql: typeof import('./core/query-builder/src/kysely')['sql']
|
|
602
|
-
const src: typeof import('./core/strings/src/index')['default']
|
|
603
|
-
const stacksPath: typeof import('./core/path/src/index')['stacksPath']
|
|
604
|
-
const startSpinner: typeof import('./core/cli/src/helpers')['startSpinner']
|
|
605
|
-
const storage: typeof import('../config/storage')['default']
|
|
606
|
-
const storagePath: typeof import('./core/path/src/index')['storagePath']
|
|
607
|
-
const storesPath: typeof import('./core/path/src/index')['storesPath']
|
|
608
|
-
const str: typeof import('./core/strings/src/macro')['str']
|
|
609
|
-
const strikethrough: typeof import('./core/cli/src/utilities')['strikethrough']
|
|
610
|
-
const string: typeof import('./core/validation/src/validate')['string']
|
|
611
|
-
const stringsPath: typeof import('./core/path/src/index')['stringsPath']
|
|
612
|
-
const stripe: typeof import('./core/payments/src/index')['stripe']
|
|
613
|
-
const subtract: typeof import('./core/utils/src/currency')['subtract']
|
|
614
|
-
const suite: typeof import('vitest')['suite']
|
|
615
|
-
const sum: typeof import('./core/arrays/src/math')['sum']
|
|
616
|
-
const syncRef: typeof import('./core/utils/src/vendors')['syncRef']
|
|
617
|
-
const syncRefs: typeof import('./core/utils/src/vendors')['syncRefs']
|
|
618
|
-
const tailwindConfig: typeof import('./core/notifications/src/tailwind.config')['default']
|
|
619
|
-
const tap: typeof import('./core/utils/src/function')['tap']
|
|
620
|
-
const teams: typeof import('./core/chat/src/index')['teams']
|
|
621
|
-
const telnyx: typeof import('./core/sms/src/index')['telnyx']
|
|
622
|
-
const template: typeof import('./core/strings/src/utils')['template']
|
|
623
|
-
const templateRef: typeof import('./core/utils/src/vendors')['templateRef']
|
|
624
|
-
const termii: typeof import('./core/sms/src/index')['termii']
|
|
625
|
-
const test: typeof import('vitest')['test']
|
|
626
|
-
const testingPath: typeof import('./core/path/src/index')['testingPath']
|
|
627
|
-
const testsPath: typeof import('./core/path/src/index')['testsPath']
|
|
628
|
-
const throttle: typeof import('./core/utils/src/throttle')['throttle']
|
|
629
|
-
const throttledRef: typeof import('./core/utils/src/vendors')['throttledRef']
|
|
630
|
-
const throttledWatch: typeof import('./core/utils/src/vendors')['throttledWatch']
|
|
631
|
-
const tick: typeof import('./core/signals/src/index')['tick']
|
|
632
|
-
const titleCase: typeof import('./core/strings/src/case')['titleCase']
|
|
633
|
-
const toArray: typeof import('./core/arrays/src/helpers')['toArray']
|
|
634
|
-
const toDecimal: typeof import('./core/utils/src/currency')['toDecimal']
|
|
635
|
-
const toNamespacedPath: typeof import('./core/path/src/index')['toNamespacedPath']
|
|
636
|
-
const toRaw: typeof import('vue')['toRaw']
|
|
637
|
-
const toReactive: typeof import('./core/utils/src/vendors')['toReactive']
|
|
638
|
-
const toRef: typeof import('vue')['toRef']
|
|
639
|
-
const toRefs: typeof import('vue')['toRefs']
|
|
640
|
-
const toSnapshot: typeof import('./core/utils/src/currency')['toSnapshot']
|
|
641
|
-
const toString: typeof import('./core/utils/src/base')['toString']
|
|
642
|
-
const toUnits: typeof import('./core/utils/src/currency')['toUnits']
|
|
643
|
-
const toValue: typeof import('vue')['toValue']
|
|
644
|
-
const toggleDark: typeof import('../resources/functions/dark')['toggleDark']
|
|
645
|
-
const totalPages: typeof import('./core/search-engine/src/index')['totalPages']
|
|
646
|
-
const transformerCompileClass: typeof import('@stacksjs/ui')['transformerCompileClass']
|
|
647
|
-
const triggerRef: typeof import('vue')['triggerRef']
|
|
648
|
-
const trimScale: typeof import('./core/utils/src/currency')['trimScale']
|
|
649
|
-
const truncate: typeof import('./core/strings/src/utils')['truncate']
|
|
650
|
-
const tryOnBeforeMount: typeof import('./core/utils/src/vendors')['tryOnBeforeMount']
|
|
651
|
-
const tryOnBeforeUnmount: typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']
|
|
652
|
-
const tryOnMounted: typeof import('./core/utils/src/vendors')['tryOnMounted']
|
|
653
|
-
const tryOnScopeDispose: typeof import('./core/utils/src/vendors')['tryOnScopeDispose']
|
|
654
|
-
const tryOnUnmounted: typeof import('./core/utils/src/vendors')['tryOnUnmounted']
|
|
655
|
-
const twilio: typeof import('./core/sms/src/index')['twilio']
|
|
656
|
-
const typesPath: typeof import('./core/path/src/index')['typesPath']
|
|
657
|
-
const ui: typeof import('../config/ui')['default']
|
|
658
|
-
const uiPath: typeof import('./core/path/src/index')['uiPath']
|
|
659
|
-
const underline: typeof import('./core/cli/src/utilities')['underline']
|
|
660
|
-
const uniq: typeof import('./core/arrays/src/helpers')['uniq']
|
|
661
|
-
const unique: typeof import('./core/arrays/src/helpers')['unique']
|
|
662
|
-
const uniqueBy: typeof import('./core/arrays/src/helpers')['uniqueBy']
|
|
663
|
-
const unit: typeof import('./core/testing/src/index')['unit']
|
|
664
|
-
const unref: typeof import('vue')['unref']
|
|
665
|
-
const unrefElement: typeof import('./core/utils/src/vendors')['unrefElement']
|
|
666
|
-
const until: typeof import('./core/utils/src/vendors')['until']
|
|
667
|
-
const updateConfigFile: typeof import('./core/storage/src/index')['updateConfigFile']
|
|
668
|
-
const upstash: typeof import('./core/cache/src/index')['upstash']
|
|
669
|
-
const useAbs: typeof import('./core/utils/src/math')['useAbs']
|
|
670
|
-
const useActiveElement: typeof import('./core/utils/src/vendors')['useActiveElement']
|
|
671
|
-
const useAnimate: typeof import('./core/utils/src/vendors')['useAnimate']
|
|
672
|
-
const useAsyncQueue: typeof import('./core/utils/src/vendors')['useAsyncQueue']
|
|
673
|
-
const useAsyncState: typeof import('./core/utils/src/vendors')['useAsyncState']
|
|
674
|
-
const useAttrs: typeof import('vue')['useAttrs']
|
|
675
|
-
const useAverage: typeof import('./core/utils/src/math')['useAverage']
|
|
676
|
-
const useBase64: typeof import('./core/utils/src/vendors')['useBase64']
|
|
677
|
-
const useBattery: typeof import('./core/utils/src/vendors')['useBattery']
|
|
678
|
-
const useBluetooth: typeof import('./core/utils/src/vendors')['useBluetooth']
|
|
679
|
-
const useBreakpoints: typeof import('./core/utils/src/vendors')['useBreakpoints']
|
|
680
|
-
const useBroadcastChannel: typeof import('./core/utils/src/vendors')['useBroadcastChannel']
|
|
681
|
-
const useBrowserLocation: typeof import('./core/utils/src/vendors')['useBrowserLocation']
|
|
682
|
-
const useCached: typeof import('./core/utils/src/vendors')['useCached']
|
|
683
|
-
const useCeil: typeof import('./core/utils/src/math')['useCeil']
|
|
684
|
-
const useChat: typeof import('./core/notifications/src/index')['useChat']
|
|
685
|
-
const useClamp: typeof import('./core/utils/src/math')['useClamp']
|
|
686
|
-
const useClipboard: typeof import('./core/utils/src/vendors')['useClipboard']
|
|
687
|
-
const useCloned: typeof import('./core/utils/src/vendors')['useCloned']
|
|
688
|
-
const useColorMode: typeof import('./core/utils/src/vendors')['useColorMode']
|
|
689
|
-
const useConfirmDialog: typeof import('./core/utils/src/vendors')['useConfirmDialog']
|
|
690
|
-
const useCssModule: typeof import('vue')['useCssModule']
|
|
691
|
-
const useCssVar: typeof import('./core/utils/src/vendors')['useCssVar']
|
|
692
|
-
const useCssVars: typeof import('vue')['useCssVars']
|
|
693
|
-
const useCurrentElement: typeof import('./core/utils/src/vendors')['useCurrentElement']
|
|
694
|
-
const useCycleList: typeof import('./core/utils/src/vendors')['useCycleList']
|
|
695
|
-
const useDark: typeof import('./core/utils/src/vendors')['useDark']
|
|
696
|
-
const useDateFormat: typeof import('./core/utils/src/vendors')['useDateFormat']
|
|
697
|
-
const useDebouncedRefHistory: typeof import('./core/utils/src/vendors')['useDebouncedRefHistory']
|
|
698
|
-
const useDeviceMotion: typeof import('./core/utils/src/vendors')['useDeviceMotion']
|
|
699
|
-
const useDeviceOrientation: typeof import('./core/utils/src/vendors')['useDeviceOrientation']
|
|
700
|
-
const useDevicePixelRatio: typeof import('./core/utils/src/vendors')['useDevicePixelRatio']
|
|
701
|
-
const useDevicesList: typeof import('./core/utils/src/vendors')['useDevicesList']
|
|
702
|
-
const useDisplayMedia: typeof import('./core/utils/src/vendors')['useDisplayMedia']
|
|
703
|
-
const useDocumentVisibility: typeof import('./core/utils/src/vendors')['useDocumentVisibility']
|
|
704
|
-
const useDraggable: typeof import('./core/utils/src/vendors')['useDraggable']
|
|
705
|
-
const useDropZone: typeof import('./core/utils/src/vendors')['useDropZone']
|
|
706
|
-
const useElementBounding: typeof import('./core/utils/src/vendors')['useElementBounding']
|
|
707
|
-
const useElementByPoint: typeof import('./core/utils/src/vendors')['useElementByPoint']
|
|
708
|
-
const useElementHover: typeof import('./core/utils/src/vendors')['useElementHover']
|
|
709
|
-
const useElementSize: typeof import('./core/utils/src/vendors')['useElementSize']
|
|
710
|
-
const useElementVisibility: typeof import('./core/utils/src/vendors')['useElementVisibility']
|
|
711
|
-
const useEmail: typeof import('./core/notifications/src/index')['useEmail']
|
|
712
|
-
const useEvent: typeof import('./core/events/src/index')['useEvent']
|
|
713
|
-
const useEventBus: typeof import('./core/utils/src/vendors')['useEventBus']
|
|
714
|
-
const useEventListener: typeof import('./core/utils/src/vendors')['useEventListener']
|
|
715
|
-
const useEventSource: typeof import('./core/utils/src/vendors')['useEventSource']
|
|
716
|
-
const useEvents: typeof import('./core/events/src/index')['useEvents']
|
|
717
|
-
const useEyeDropper: typeof import('./core/utils/src/vendors')['useEyeDropper']
|
|
718
|
-
const useFavicon: typeof import('./core/utils/src/vendors')['useFavicon']
|
|
719
|
-
const useFetch: typeof import('./core/utils/src/vendors')['useFetch']
|
|
720
|
-
const useFileDialog: typeof import('./core/utils/src/vendors')['useFileDialog']
|
|
721
|
-
const useFileSystemAccess: typeof import('./core/utils/src/vendors')['useFileSystemAccess']
|
|
722
|
-
const useFloor: typeof import('./core/utils/src/math')['useFloor']
|
|
723
|
-
const useFocus: typeof import('./core/utils/src/vendors')['useFocus']
|
|
724
|
-
const useFocusWithin: typeof import('./core/utils/src/vendors')['useFocusWithin']
|
|
725
|
-
const useFps: typeof import('./core/utils/src/vendors')['useFps']
|
|
726
|
-
const useFullscreen: typeof import('./core/utils/src/vendors')['useFullscreen']
|
|
727
|
-
const useGamepad: typeof import('./core/utils/src/vendors')['useGamepad']
|
|
728
|
-
const useGeolocation: typeof import('./core/utils/src/vendors')['useGeolocation']
|
|
729
|
-
const useIdle: typeof import('./core/utils/src/vendors')['useIdle']
|
|
730
|
-
const useImage: typeof import('./core/utils/src/vendors')['useImage']
|
|
731
|
-
const useInfiniteScroll: typeof import('./core/utils/src/vendors')['useInfiniteScroll']
|
|
732
|
-
const useIntersectionObserver: typeof import('./core/utils/src/vendors')['useIntersectionObserver']
|
|
733
|
-
const useKeyModifier: typeof import('./core/utils/src/vendors')['useKeyModifier']
|
|
734
|
-
const useLink: typeof import('vue-router')['useLink']
|
|
735
|
-
const useLocalStorage: typeof import('./core/utils/src/vendors')['useLocalStorage']
|
|
736
|
-
const useMagicKeys: typeof import('./core/utils/src/vendors')['useMagicKeys']
|
|
737
|
-
const useManualRefHistory: typeof import('./core/utils/src/vendors')['useManualRefHistory']
|
|
738
|
-
const useMath: typeof import('./core/utils/src/math')['useMath']
|
|
739
|
-
const useMax: typeof import('./core/utils/src/math')['useMax']
|
|
740
|
-
const useMediaControls: typeof import('./core/utils/src/vendors')['useMediaControls']
|
|
741
|
-
const useMediaQuery: typeof import('./core/utils/src/vendors')['useMediaQuery']
|
|
742
|
-
const useMemoize: typeof import('./core/utils/src/vendors')['useMemoize']
|
|
743
|
-
const useMemory: typeof import('./core/utils/src/vendors')['useMemory']
|
|
744
|
-
const useMin: typeof import('./core/utils/src/math')['useMin']
|
|
745
|
-
const useMounted: typeof import('./core/utils/src/vendors')['useMounted']
|
|
746
|
-
const useMouse: typeof import('./core/utils/src/vendors')['useMouse']
|
|
747
|
-
const useMouseInElement: typeof import('./core/utils/src/vendors')['useMouseInElement']
|
|
748
|
-
const useMousePressed: typeof import('./core/utils/src/vendors')['useMousePressed']
|
|
749
|
-
const useMutationObserver: typeof import('./core/utils/src/vendors')['useMutationObserver']
|
|
750
|
-
const useNavigatorLanguage: typeof import('./core/utils/src/vendors')['useNavigatorLanguage']
|
|
751
|
-
const useNetwork: typeof import('./core/utils/src/vendors')['useNetwork']
|
|
752
|
-
const useNotification: typeof import('./core/notifications/src/index')['useNotification']
|
|
753
|
-
const useNow: typeof import('./core/utils/src/vendors')['useNow']
|
|
754
|
-
const useObjectUrl: typeof import('./core/utils/src/vendors')['useObjectUrl']
|
|
755
|
-
const useOffsetPagination: typeof import('./core/utils/src/vendors')['useOffsetPagination']
|
|
756
|
-
const useOnline: typeof import('./core/utils/src/vendors')['useOnline']
|
|
757
|
-
const usePageLeave: typeof import('./core/utils/src/vendors')['usePageLeave']
|
|
758
|
-
const useParallax: typeof import('./core/utils/src/vendors')['useParallax']
|
|
759
|
-
const useParentElement: typeof import('./core/utils/src/vendors')['useParentElement']
|
|
760
|
-
const usePerformanceObserver: typeof import('./core/utils/src/vendors')['usePerformanceObserver']
|
|
761
|
-
const usePermission: typeof import('./core/utils/src/vendors')['usePermission']
|
|
762
|
-
const usePointer: typeof import('./core/utils/src/vendors')['usePointer']
|
|
763
|
-
const usePointerLock: typeof import('./core/utils/src/vendors')['usePointerLock']
|
|
764
|
-
const usePointerSwipe: typeof import('./core/utils/src/vendors')['usePointerSwipe']
|
|
765
|
-
const usePrecision: typeof import('./core/utils/src/math')['usePrecision']
|
|
766
|
-
const usePreferredColorScheme: typeof import('./core/utils/src/vendors')['usePreferredColorScheme']
|
|
767
|
-
const usePreferredContrast: typeof import('./core/utils/src/vendors')['usePreferredContrast']
|
|
768
|
-
const usePreferredDark: typeof import('./core/utils/src/vendors')['usePreferredDark']
|
|
769
|
-
const usePreferredLanguages: typeof import('./core/utils/src/vendors')['usePreferredLanguages']
|
|
770
|
-
const usePreferredReducedMotion: typeof import('./core/utils/src/vendors')['usePreferredReducedMotion']
|
|
771
|
-
const usePrevious: typeof import('./core/utils/src/vendors')['usePrevious']
|
|
772
|
-
const useProjection: typeof import('./core/utils/src/math')['useProjection']
|
|
773
|
-
const useRafFn: typeof import('./core/utils/src/vendors')['useRafFn']
|
|
774
|
-
const useRefHistory: typeof import('./core/utils/src/vendors')['useRefHistory']
|
|
775
|
-
const useResizeObserver: typeof import('./core/utils/src/vendors')['useResizeObserver']
|
|
776
|
-
const useRound: typeof import('./core/utils/src/math')['useRound']
|
|
777
|
-
const useRoute: typeof import('vue-router')['useRoute']
|
|
778
|
-
const useRouter: typeof import('vue-router')['useRouter']
|
|
779
|
-
const useSMS: typeof import('./core/notifications/src/index')['useSMS']
|
|
780
|
-
const useScreenOrientation: typeof import('./core/utils/src/vendors')['useScreenOrientation']
|
|
781
|
-
const useScreenSafeArea: typeof import('./core/utils/src/vendors')['useScreenSafeArea']
|
|
782
|
-
const useScriptTag: typeof import('./core/utils/src/vendors')['useScriptTag']
|
|
783
|
-
const useScroll: typeof import('./core/utils/src/vendors')['useScroll']
|
|
784
|
-
const useScrollLock: typeof import('./core/utils/src/vendors')['useScrollLock']
|
|
785
|
-
const useSearchEngine: typeof import('./core/search-engine/src/index')['useSearchEngine']
|
|
786
|
-
const useSessionStorage: typeof import('./core/utils/src/vendors')['useSessionStorage']
|
|
787
|
-
const useShare: typeof import('./core/utils/src/vendors')['useShare']
|
|
788
|
-
const useSlots: typeof import('vue')['useSlots']
|
|
789
|
-
const useSorted: typeof import('./core/utils/src/vendors')['useSorted']
|
|
790
|
-
const useSpeechRecognition: typeof import('./core/utils/src/vendors')['useSpeechRecognition']
|
|
791
|
-
const useSpeechSynthesis: typeof import('./core/utils/src/vendors')['useSpeechSynthesis']
|
|
792
|
-
const useStepper: typeof import('./core/utils/src/vendors')['useStepper']
|
|
793
|
-
const useStorage: typeof import('./core/utils/src/vendors')['useStorage']
|
|
794
|
-
const useStorageAsync: typeof import('./core/utils/src/vendors')['useStorageAsync']
|
|
795
|
-
const useStyleTag: typeof import('./core/utils/src/vendors')['useStyleTag']
|
|
796
|
-
const useSum: typeof import('./core/utils/src/math')['useSum']
|
|
797
|
-
const useSupported: typeof import('./core/utils/src/vendors')['useSupported']
|
|
798
|
-
const useSwipe: typeof import('./core/utils/src/vendors')['useSwipe']
|
|
799
|
-
const useTemplateRefsList: typeof import('./core/utils/src/vendors')['useTemplateRefsList']
|
|
800
|
-
const useTextDirection: typeof import('./core/utils/src/vendors')['useTextDirection']
|
|
801
|
-
const useTextSelection: typeof import('./core/utils/src/vendors')['useTextSelection']
|
|
802
|
-
const useTextareaAutosize: typeof import('./core/utils/src/vendors')['useTextareaAutosize']
|
|
803
|
-
const useThrottledRefHistory: typeof import('./core/utils/src/vendors')['useThrottledRefHistory']
|
|
804
|
-
const useTimeAgo: typeof import('./core/utils/src/vendors')['useTimeAgo']
|
|
805
|
-
const useTimeoutPoll: typeof import('./core/utils/src/vendors')['useTimeoutPoll']
|
|
806
|
-
const useTimestamp: typeof import('./core/utils/src/vendors')['useTimestamp']
|
|
807
|
-
const useTitle: typeof import('./core/utils/src/vendors')['useTitle']
|
|
808
|
-
const useToggle: typeof import('./core/utils/src/vendors')['useToggle']
|
|
809
|
-
const useTransition: typeof import('./core/utils/src/vendors')['useTransition']
|
|
810
|
-
const useTrunc: typeof import('./core/utils/src/math')['useTrunc']
|
|
811
|
-
const useUrlSearchParams: typeof import('./core/utils/src/vendors')['useUrlSearchParams']
|
|
812
|
-
const useUserMedia: typeof import('./core/utils/src/vendors')['useUserMedia']
|
|
813
|
-
const useVModel: typeof import('./core/utils/src/vendors')['useVModel']
|
|
814
|
-
const useVModels: typeof import('./core/utils/src/vendors')['useVModels']
|
|
815
|
-
const useVibrate: typeof import('./core/utils/src/vendors')['useVibrate']
|
|
816
|
-
const useVirtualList: typeof import('./core/utils/src/vendors')['useVirtualList']
|
|
817
|
-
const useWakeLock: typeof import('./core/utils/src/vendors')['useWakeLock']
|
|
818
|
-
const useWebNotification: typeof import('./core/utils/src/vendors')['useWebNotification']
|
|
819
|
-
const useWebSocket: typeof import('./core/utils/src/vendors')['useWebSocket']
|
|
820
|
-
const useWebWorker: typeof import('./core/utils/src/vendors')['useWebWorker']
|
|
821
|
-
const useWebWorkerFn: typeof import('./core/utils/src/vendors')['useWebWorkerFn']
|
|
822
|
-
const useWindowFocus: typeof import('./core/utils/src/vendors')['useWindowFocus']
|
|
823
|
-
const useWindowScroll: typeof import('./core/utils/src/vendors')['useWindowScroll']
|
|
824
|
-
const useWindowSize: typeof import('./core/utils/src/vendors')['useWindowSize']
|
|
825
|
-
const utilsPath: typeof import('./core/path/src/index')['utilsPath']
|
|
826
|
-
const validate: typeof import('./core/validation/src/validate')['validate']
|
|
827
|
-
const validateAll: typeof import('@stacksjs/validation')['validateAll']
|
|
828
|
-
const validateAllSync: typeof import('@stacksjs/validation')['validateAllSync']
|
|
829
|
-
const validateSync: typeof import('@stacksjs/validation')['validateSync']
|
|
830
|
-
const validateUsername: typeof import('./core/validation/src/is')['validateUsername']
|
|
831
|
-
const validationPath: typeof import('./core/path/src/index')['validationPath']
|
|
832
|
-
const validator: typeof import('./core/validation/src/validate')['validator']
|
|
833
|
-
const verifyHash: typeof import('./core/security/src/hash')['verifyHash']
|
|
834
|
-
const vi: typeof import('vitest')['vi']
|
|
835
|
-
const vitest: typeof import('vitest')['vitest']
|
|
836
|
-
const watch: typeof import('vue')['watch']
|
|
837
|
-
const watchArray: typeof import('./core/utils/src/vendors')['watchArray']
|
|
838
|
-
const watchAtMost: typeof import('./core/utils/src/vendors')['watchAtMost']
|
|
839
|
-
const watchDebounced: typeof import('./core/utils/src/vendors')['watchDebounced']
|
|
840
|
-
const watchDeep: typeof import('./core/utils/src/vendors')['watchDeep']
|
|
841
|
-
const watchEffect: typeof import('vue')['watchEffect']
|
|
842
|
-
const watchIgnorable: typeof import('./core/utils/src/vendors')['watchIgnorable']
|
|
843
|
-
const watchImmediate: typeof import('./core/utils/src/vendors')['watchImmediate']
|
|
844
|
-
const watchOnce: typeof import('./core/utils/src/vendors')['watchOnce']
|
|
845
|
-
const watchPausable: typeof import('./core/utils/src/vendors')['watchPausable']
|
|
846
|
-
const watchPostEffect: typeof import('vue')['watchPostEffect']
|
|
847
|
-
const watchSyncEffect: typeof import('vue')['watchSyncEffect']
|
|
848
|
-
const watchThrottled: typeof import('./core/utils/src/vendors')['watchThrottled']
|
|
849
|
-
const watchTriggerable: typeof import('./core/utils/src/vendors')['watchTriggerable']
|
|
850
|
-
const watchWithFilter: typeof import('./core/utils/src/vendors')['watchWithFilter']
|
|
851
|
-
const whenever: typeof import('./core/utils/src/vendors')['whenever']
|
|
852
|
-
const white: typeof import('./core/cli/src/utilities')['white']
|
|
853
|
-
const wipRealtime: typeof import('./core/realtime/src/index')['wipRealtime']
|
|
854
|
-
const wipSlug: typeof import('./core/slug/src/index')['wipSlug']
|
|
855
|
-
const writeJsonFile: typeof import('./core/storage/src/index')['writeJsonFile']
|
|
856
|
-
const writeTextFile: typeof import('./core/storage/src/index')['writeTextFile']
|
|
857
|
-
const xRayPath: typeof import('./core/path/src/index')['xRayPath']
|
|
858
|
-
const yellow: typeof import('./core/cli/src/utilities')['yellow']
|
|
859
|
-
}
|
|
860
|
-
// for type re-export
|
|
861
|
-
declare global {
|
|
862
|
-
// @ts-ignore
|
|
863
|
-
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
|
|
864
|
-
}
|
|
865
|
-
// for vue template auto import
|
|
866
|
-
import { UnwrapRef } from 'vue'
|
|
867
|
-
declare module 'vue' {
|
|
868
|
-
interface ComponentCustomProperties {
|
|
869
|
-
readonly $$: UnwrapRef<typeof import('vue/macros')['$$']>
|
|
870
|
-
readonly $: UnwrapRef<typeof import('vue/macros')['$']>
|
|
871
|
-
readonly $computed: UnwrapRef<typeof import('vue/macros')['$computed']>
|
|
872
|
-
readonly $customRef: UnwrapRef<typeof import('vue/macros')['$customRef']>
|
|
873
|
-
readonly $ref: UnwrapRef<typeof import('vue/macros')['$ref']>
|
|
874
|
-
readonly $shallowRef: UnwrapRef<typeof import('vue/macros')['$shallowRef']>
|
|
875
|
-
readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
|
|
876
|
-
readonly : UnwrapRef<typeof import('./core/orm/src/index')['']>
|
|
877
|
-
readonly Arr: UnwrapRef<typeof import('./core/arrays/src/macro')['Arr']>
|
|
878
|
-
readonly Collection: UnwrapRef<typeof import('./core/objects/src/index')['Collection']>
|
|
879
|
-
readonly CssEngine: UnwrapRef<typeof import('@stacksjs/ui')['CssEngine']>
|
|
880
|
-
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
|
881
|
-
readonly Err: UnwrapRef<typeof import('./core/error-handling/src/index')['Err']>
|
|
882
|
-
readonly ExitCode: UnwrapRef<typeof import('./core/cli/src/index')['ExitCode']>
|
|
883
|
-
readonly Head: UnwrapRef<typeof import('./core/utils/src/vendors')['Head']>
|
|
884
|
-
readonly HeadVuePlugin: UnwrapRef<typeof import('./core/utils/src/vendors')['HeadVuePlugin']>
|
|
885
|
-
readonly MoneyValidator: UnwrapRef<typeof import('./core/validation/src/types/money')['MoneyValidator']>
|
|
886
|
-
readonly MysqlDialect: UnwrapRef<typeof import('./core/query-builder/src/kysely')['MysqlDialect']>
|
|
887
|
-
readonly Ok: UnwrapRef<typeof import('./core/error-handling/src/index')['Ok']>
|
|
888
|
-
readonly PostgresDialect: UnwrapRef<typeof import('./core/query-builder/src/kysely')['PostgresDialect']>
|
|
889
|
-
readonly Prompt: UnwrapRef<typeof import('./core/cli/src/console')['Prompt']>
|
|
890
|
-
readonly QueryBuilder: UnwrapRef<typeof import('./core/query-builder/src/kysely')['QueryBuilder']>
|
|
891
|
-
readonly Result: UnwrapRef<typeof import('./core/error-handling/src/index')['Result']>
|
|
892
|
-
readonly ResultAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['ResultAsync']>
|
|
893
|
-
readonly Router: UnwrapRef<typeof import('./core/router/src/index')['Router']>
|
|
894
|
-
readonly Store: UnwrapRef<typeof import('@stacksjs/ui')['Store']>
|
|
895
|
-
readonly Str: UnwrapRef<typeof import('./core/strings/src/macro')['Str']>
|
|
896
|
-
readonly USD: UnwrapRef<typeof import('./core/utils/src/currency')['USD']>
|
|
897
|
-
readonly UiEngine: UnwrapRef<typeof import('@stacksjs/ui')['UiEngine']>
|
|
898
|
-
readonly Validator: UnwrapRef<typeof import('./core/validation/src/validate')['Validator']>
|
|
899
|
-
readonly _dirname: UnwrapRef<typeof import('./core/storage/src/index')['_dirname']>
|
|
900
|
-
readonly actionsPath: UnwrapRef<typeof import('./core/path/src/index')['actionsPath']>
|
|
901
|
-
readonly add: UnwrapRef<typeof import('./core/utils/src/currency')['add']>
|
|
902
|
-
readonly addIrregularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addIrregularRule']>
|
|
903
|
-
readonly addPluralRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addPluralRule']>
|
|
904
|
-
readonly addSingularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addSingularRule']>
|
|
905
|
-
readonly addUncountableRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addUncountableRule']>
|
|
906
|
-
readonly afterAll: UnwrapRef<typeof import('vitest')['afterAll']>
|
|
907
|
-
readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
|
|
908
|
-
readonly aiPath: UnwrapRef<typeof import('./core/path/src/index')['aiPath']>
|
|
909
|
-
readonly aliasPath: UnwrapRef<typeof import('./core/path/src/index')['aliasPath']>
|
|
910
|
-
readonly all: UnwrapRef<typeof import('./core/events/src/index')['all']>
|
|
911
|
-
readonly allocate: UnwrapRef<typeof import('./core/utils/src/currency')['allocate']>
|
|
912
|
-
readonly and: UnwrapRef<typeof import('./core/utils/src/math')['and']>
|
|
913
|
-
readonly ansi256Bg: UnwrapRef<typeof import('./core/cli/src/utilities')['ansi256Bg']>
|
|
914
|
-
readonly any: UnwrapRef<typeof import('./core/validation/src/validate')['any']>
|
|
915
|
-
readonly app: UnwrapRef<typeof import('../config/app')['default']>
|
|
916
|
-
readonly appPath: UnwrapRef<typeof import('./core/path/src/index')['appPath']>
|
|
917
|
-
readonly arr: UnwrapRef<typeof import('./core/arrays/src/macro')['arr']>
|
|
918
|
-
readonly array: UnwrapRef<typeof import('./core/validation/src/validate')['array']>
|
|
919
|
-
readonly arraysPath: UnwrapRef<typeof import('./core/path/src/index')['arraysPath']>
|
|
920
|
-
readonly assert: UnwrapRef<typeof import('vitest')['assert']>
|
|
921
|
-
readonly asyncComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['asyncComputed']>
|
|
922
|
-
readonly at: UnwrapRef<typeof import('./core/arrays/src/helpers')['at']>
|
|
923
|
-
readonly auth: UnwrapRef<typeof import('./core/auth/src/index')['auth']>
|
|
924
|
-
readonly authPath: UnwrapRef<typeof import('./core/path/src/index')['authPath']>
|
|
925
|
-
readonly autoResetRef: UnwrapRef<typeof import('./core/utils/src/vendors')['autoResetRef']>
|
|
926
|
-
readonly average: UnwrapRef<typeof import('./core/arrays/src/math')['average']>
|
|
927
|
-
readonly avg: UnwrapRef<typeof import('./core/arrays/src/math')['avg']>
|
|
928
|
-
readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
|
|
929
|
-
readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
|
|
930
|
-
readonly basename: UnwrapRef<typeof import('./core/path/src/index')['basename']>
|
|
931
|
-
readonly batchInvoke: UnwrapRef<typeof import('./core/utils/src/function')['batchInvoke']>
|
|
932
|
-
readonly bcryptEncode: UnwrapRef<typeof import('./core/security/src/hash')['bcryptEncode']>
|
|
933
|
-
readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
|
|
934
|
-
readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
|
|
935
|
-
readonly beforeEach: UnwrapRef<typeof import('vitest')['beforeEach']>
|
|
936
|
-
readonly bgBlack: UnwrapRef<typeof import('./core/cli/src/utilities')['bgBlack']>
|
|
937
|
-
readonly bgBlue: UnwrapRef<typeof import('./core/cli/src/utilities')['bgBlue']>
|
|
938
|
-
readonly bgCyan: UnwrapRef<typeof import('./core/cli/src/utilities')['bgCyan']>
|
|
939
|
-
readonly bgGray: UnwrapRef<typeof import('./core/cli/src/utilities')['bgGray']>
|
|
940
|
-
readonly bgGreen: UnwrapRef<typeof import('./core/cli/src/utilities')['bgGreen']>
|
|
941
|
-
readonly bgLightBlue: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightBlue']>
|
|
942
|
-
readonly bgLightCyan: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightCyan']>
|
|
943
|
-
readonly bgLightGray: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightGray']>
|
|
944
|
-
readonly bgLightGreen: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightGreen']>
|
|
945
|
-
readonly bgLightMagenta: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightMagenta']>
|
|
946
|
-
readonly bgLightRed: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightRed']>
|
|
947
|
-
readonly bgLightYellow: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightYellow']>
|
|
948
|
-
readonly bgMagenta: UnwrapRef<typeof import('./core/cli/src/utilities')['bgMagenta']>
|
|
949
|
-
readonly bgRed: UnwrapRef<typeof import('./core/cli/src/utilities')['bgRed']>
|
|
950
|
-
readonly bgWhite: UnwrapRef<typeof import('./core/cli/src/utilities')['bgWhite']>
|
|
951
|
-
readonly bgYellow: UnwrapRef<typeof import('./core/cli/src/utilities')['bgYellow']>
|
|
952
|
-
readonly black: UnwrapRef<typeof import('./core/cli/src/utilities')['black']>
|
|
953
|
-
readonly blue: UnwrapRef<typeof import('./core/cli/src/utilities')['blue']>
|
|
954
|
-
readonly bold: UnwrapRef<typeof import('./core/cli/src/utilities')['bold']>
|
|
955
|
-
readonly boolean: UnwrapRef<typeof import('./core/validation/src/validate')['boolean']>
|
|
956
|
-
readonly breakpointsAntDesign: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsAntDesign']>
|
|
957
|
-
readonly breakpointsBootstrapV5: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']>
|
|
958
|
-
readonly breakpointsMasterCss: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsMasterCss']>
|
|
959
|
-
readonly breakpointsQuasar: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsQuasar']>
|
|
960
|
-
readonly breakpointsSematic: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsSematic']>
|
|
961
|
-
readonly breakpointsTailwind: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsTailwind']>
|
|
962
|
-
readonly breakpointsVuetify: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsVuetify']>
|
|
963
|
-
readonly buildEnginePath: UnwrapRef<typeof import('./core/path/src/index')['buildEnginePath']>
|
|
964
|
-
readonly buildPath: UnwrapRef<typeof import('./core/path/src/index')['buildPath']>
|
|
965
|
-
readonly cache: UnwrapRef<typeof import('../config/cache')['default']>
|
|
966
|
-
readonly cachePath: UnwrapRef<typeof import('./core/path/src/index')['cachePath']>
|
|
967
|
-
readonly calculatePagination: UnwrapRef<typeof import('./core/search-engine/src/index')['calculatePagination']>
|
|
968
|
-
readonly camelCase: UnwrapRef<typeof import('./core/strings/src/case')['camelCase']>
|
|
969
|
-
readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/case')['capitalCase']>
|
|
970
|
-
readonly capitalize: UnwrapRef<typeof import('./core/strings/src/case')['capitalize']>
|
|
971
|
-
readonly cdn: UnwrapRef<typeof import('../config/cdn')['default']>
|
|
972
|
-
readonly chai: UnwrapRef<typeof import('vitest')['chai']>
|
|
973
|
-
readonly chatPath: UnwrapRef<typeof import('./core/path/src/index')['chatPath']>
|
|
974
|
-
readonly clamp: UnwrapRef<typeof import('./core/utils/src/math')['clamp']>
|
|
975
|
-
readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/helpers')['clampArrayRange']>
|
|
976
|
-
readonly clearUndefined: UnwrapRef<typeof import('./core/objects/src/index')['clearUndefined']>
|
|
977
|
-
readonly cli: UnwrapRef<typeof import('../config/cli')['default']>
|
|
978
|
-
readonly cliPath: UnwrapRef<typeof import('./core/path/src/index')['cliPath']>
|
|
979
|
-
readonly client: UnwrapRef<typeof import('./core/search-engine/src/index')['client']>
|
|
980
|
-
readonly cloneFnJSON: UnwrapRef<typeof import('./core/utils/src/vendors')['cloneFnJSON']>
|
|
981
|
-
readonly cloudPath: UnwrapRef<typeof import('./core/path/src/index')['cloudPath']>
|
|
982
|
-
readonly collect: UnwrapRef<typeof import('./core/objects/src/index')['collect']>
|
|
983
|
-
readonly collectionsPath: UnwrapRef<typeof import('./core/path/src/index')['collectionsPath']>
|
|
984
|
-
readonly command: UnwrapRef<typeof import('./core/cli/src/command')['command']>
|
|
985
|
-
readonly compare: UnwrapRef<typeof import('./core/utils/src/currency')['compare']>
|
|
986
|
-
readonly componentsPath: UnwrapRef<typeof import('./core/path/src/index')['componentsPath']>
|
|
987
|
-
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
|
988
|
-
readonly computedAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['computedAsync']>
|
|
989
|
-
readonly computedEager: UnwrapRef<typeof import('./core/utils/src/vendors')['computedEager']>
|
|
990
|
-
readonly computedInject: UnwrapRef<typeof import('./core/utils/src/vendors')['computedInject']>
|
|
991
|
-
readonly computedSignal: UnwrapRef<typeof import('./core/signals/src/index')['computedSignal']>
|
|
992
|
-
readonly computedWithControl: UnwrapRef<typeof import('./core/utils/src/vendors')['computedWithControl']>
|
|
993
|
-
readonly config: UnwrapRef<typeof import('./core/utils/src/config')['config']>
|
|
994
|
-
readonly configPath: UnwrapRef<typeof import('./core/path/src/index')['configPath']>
|
|
995
|
-
readonly constantCase: UnwrapRef<typeof import('./core/strings/src/case')['constantCase']>
|
|
996
|
-
readonly contains: UnwrapRef<typeof import('./core/arrays/src/contains')['contains']>
|
|
997
|
-
readonly containsAll: UnwrapRef<typeof import('./core/arrays/src/contains')['containsAll']>
|
|
998
|
-
readonly containsAny: UnwrapRef<typeof import('./core/arrays/src/contains')['containsAny']>
|
|
999
|
-
readonly containsNone: UnwrapRef<typeof import('./core/arrays/src/contains')['containsNone']>
|
|
1000
|
-
readonly containsOnly: UnwrapRef<typeof import('./core/arrays/src/contains')['containsOnly']>
|
|
1001
|
-
readonly controlledComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledComputed']>
|
|
1002
|
-
readonly controlledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledRef']>
|
|
1003
|
-
readonly convert: UnwrapRef<typeof import('./core/utils/src/currency')['convert']>
|
|
1004
|
-
readonly copyFolder: UnwrapRef<typeof import('./core/storage/src/index')['copyFolder']>
|
|
1005
|
-
readonly corePath: UnwrapRef<typeof import('./core/path/src/index')['corePath']>
|
|
1006
|
-
readonly count: UnwrapRef<typeof import('../resources/functions/counter')['count']>
|
|
1007
|
-
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
|
1008
|
-
readonly createControlledPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createControlledPromise']>
|
|
1009
|
-
readonly createEventHook: UnwrapRef<typeof import('./core/utils/src/vendors')['createEventHook']>
|
|
1010
|
-
readonly createFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['createFetch']>
|
|
1011
|
-
readonly createFolder: UnwrapRef<typeof import('./core/storage/src/index')['createFolder']>
|
|
1012
|
-
readonly createGenericProjection: UnwrapRef<typeof import('./core/utils/src/math')['createGenericProjection']>
|
|
1013
|
-
readonly createGlobalState: UnwrapRef<typeof import('./core/utils/src/vendors')['createGlobalState']>
|
|
1014
|
-
readonly createHead: UnwrapRef<typeof import('./core/utils/src/vendors')['createHead']>
|
|
1015
|
-
readonly createInjectionState: UnwrapRef<typeof import('./core/utils/src/vendors')['createInjectionState']>
|
|
1016
|
-
readonly createMysqlPool: UnwrapRef<typeof import('./core/query-builder/src/kysely')['createMysqlPool']>
|
|
1017
|
-
readonly createProjection: UnwrapRef<typeof import('./core/utils/src/math')['createProjection']>
|
|
1018
|
-
readonly createPromiseLock: UnwrapRef<typeof import('./core/utils/src/promise')['createPromiseLock']>
|
|
1019
|
-
readonly createReactiveFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createReactiveFn']>
|
|
1020
|
-
readonly createReusableTemplate: UnwrapRef<typeof import('./core/utils/src/vendors')['createReusableTemplate']>
|
|
1021
|
-
readonly createSharedComposable: UnwrapRef<typeof import('./core/utils/src/vendors')['createSharedComposable']>
|
|
1022
|
-
readonly createSingletonPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createSingletonPromise']>
|
|
1023
|
-
readonly createTemplatePromise: UnwrapRef<typeof import('./core/utils/src/vendors')['createTemplatePromise']>
|
|
1024
|
-
readonly createUnrefFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createUnrefFn']>
|
|
1025
|
-
readonly currency: UnwrapRef<typeof import('./core/utils/src/currency')['currency']>
|
|
1026
|
-
readonly currentPage: UnwrapRef<typeof import('./core/search-engine/src/index')['currentPage']>
|
|
1027
|
-
readonly customElementsDataPath: UnwrapRef<typeof import('./core/path/src/index')['customElementsDataPath']>
|
|
1028
|
-
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
|
1029
|
-
readonly customStorageEventName: UnwrapRef<typeof import('./core/utils/src/vendors')['customStorageEventName']>
|
|
1030
|
-
readonly cyan: UnwrapRef<typeof import('./core/cli/src/utilities')['cyan']>
|
|
1031
|
-
readonly dashboardPath: UnwrapRef<typeof import('./core/path/src/index')['dashboardPath']>
|
|
1032
|
-
readonly database: UnwrapRef<typeof import('../config/database')['default']>
|
|
1033
|
-
readonly databasePath: UnwrapRef<typeof import('./core/path/src/index')['databasePath']>
|
|
1034
|
-
readonly dateFormat: UnwrapRef<typeof import('./core/datetime/src/index')['dateFormat']>
|
|
1035
|
-
readonly datetimePath: UnwrapRef<typeof import('./core/path/src/index')['datetimePath']>
|
|
1036
|
-
readonly dd: UnwrapRef<typeof import('@stacksjs/logging')['dd']>
|
|
1037
|
-
readonly debounce: UnwrapRef<typeof import('./core/utils/src/debounce')['debounce']>
|
|
1038
|
-
readonly debouncedRef: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedRef']>
|
|
1039
|
-
readonly debouncedWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedWatch']>
|
|
1040
|
-
readonly debug: UnwrapRef<typeof import('../config/debug')['default']>
|
|
1041
|
-
readonly decrypt: UnwrapRef<typeof import('./core/security/src/crypt')['decrypt']>
|
|
1042
|
-
readonly deepMerge: UnwrapRef<typeof import('./core/objects/src/index')['deepMerge']>
|
|
1043
|
-
readonly defaultDocument: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultDocument']>
|
|
1044
|
-
readonly defaultLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultLocation']>
|
|
1045
|
-
readonly defaultNavigator: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultNavigator']>
|
|
1046
|
-
readonly defaultWindow: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultWindow']>
|
|
1047
|
-
readonly defineApp: UnwrapRef<typeof import('./core/utils/src/config')['defineApp']>
|
|
1048
|
-
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
1049
|
-
readonly defineCache: UnwrapRef<typeof import('./core/utils/src/config')['defineCache']>
|
|
1050
|
-
readonly defineCdn: UnwrapRef<typeof import('./core/utils/src/config')['defineCdn']>
|
|
1051
|
-
readonly defineCli: UnwrapRef<typeof import('./core/utils/src/config')['defineCli']>
|
|
1052
|
-
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
1053
|
-
readonly defineCronJobsConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineCronJobsConfig']>
|
|
1054
|
-
readonly defineDatabase: UnwrapRef<typeof import('./core/utils/src/config')['defineDatabase']>
|
|
1055
|
-
readonly defineDebugConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineDebugConfig']>
|
|
1056
|
-
readonly defineDns: UnwrapRef<typeof import('./core/utils/src/config')['defineDns']>
|
|
1057
|
-
readonly defineEmailConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineEmailConfig']>
|
|
1058
|
-
readonly defineEvents: UnwrapRef<typeof import('./core/utils/src/config')['defineEvents']>
|
|
1059
|
-
readonly defineGit: UnwrapRef<typeof import('./core/utils/src/config')['defineGit']>
|
|
1060
|
-
readonly defineHashing: UnwrapRef<typeof import('./core/utils/src/config')['defineHashing']>
|
|
1061
|
-
readonly defineLibrary: UnwrapRef<typeof import('./core/utils/src/config')['defineLibrary']>
|
|
1062
|
-
readonly defineModel: UnwrapRef<typeof import('./core/utils/src/config')['defineModel']>
|
|
1063
|
-
readonly defineNotification: UnwrapRef<typeof import('./core/utils/src/config')['defineNotification']>
|
|
1064
|
-
readonly definePage: UnwrapRef<typeof import('./core/utils/src/config')['definePage']>
|
|
1065
|
-
readonly definePayment: UnwrapRef<typeof import('./core/utils/src/config')['definePayment']>
|
|
1066
|
-
readonly defineSearchEngine: UnwrapRef<typeof import('./core/utils/src/config')['defineSearchEngine']>
|
|
1067
|
-
readonly defineServices: UnwrapRef<typeof import('./core/utils/src/config')['defineServices']>
|
|
1068
|
-
readonly defineStorage: UnwrapRef<typeof import('./core/utils/src/config')['defineStorage']>
|
|
1069
|
-
readonly defineUi: UnwrapRef<typeof import('./core/utils/src/config')['defineUi']>
|
|
1070
|
-
readonly del: UnwrapRef<typeof import('./core/utils/src/delete')['del']>
|
|
1071
|
-
readonly deleteEmptyFolders: UnwrapRef<typeof import('./core/storage/src/index')['deleteEmptyFolders']>
|
|
1072
|
-
readonly deleteFiles: UnwrapRef<typeof import('./core/storage/src/index')['deleteFiles']>
|
|
1073
|
-
readonly deleteFolder: UnwrapRef<typeof import('./core/storage/src/index')['deleteFolder']>
|
|
1074
|
-
readonly delimiter: UnwrapRef<typeof import('./core/path/src/index')['delimiter']>
|
|
1075
|
-
readonly describe: UnwrapRef<typeof import('vitest')['describe']>
|
|
1076
|
-
readonly desktopPath: UnwrapRef<typeof import('./core/path/src/index')['desktopPath']>
|
|
1077
|
-
readonly detectIndent: UnwrapRef<typeof import('./core/strings/src/utils')['detectIndent']>
|
|
1078
|
-
readonly detectNewline: UnwrapRef<typeof import('./core/strings/src/utils')['detectNewline']>
|
|
1079
|
-
readonly determineDebugLevel: UnwrapRef<typeof import('./core/utils/src/helpers')['determineDebugLevel']>
|
|
1080
|
-
readonly determineResetPreset: UnwrapRef<typeof import('./core/utils/src/helpers')['determineResetPreset']>
|
|
1081
|
-
readonly determineState: UnwrapRef<typeof import('./core/search-engine/src/helpers')['determineState']>
|
|
1082
|
-
readonly developmentPath: UnwrapRef<typeof import('./core/path/src/index')['developmentPath']>
|
|
1083
|
-
readonly dim: UnwrapRef<typeof import('./core/cli/src/utilities')['dim']>
|
|
1084
|
-
readonly dinero: UnwrapRef<typeof import('./core/utils/src/currency')['dinero']>
|
|
1085
|
-
readonly dirname: UnwrapRef<typeof import('./core/path/src/index')['dirname']>
|
|
1086
|
-
readonly discord: UnwrapRef<typeof import('./core/chat/src/index')['discord']>
|
|
1087
|
-
readonly dispatch: UnwrapRef<typeof import('./core/events/src/index')['dispatch']>
|
|
1088
|
-
readonly dns: UnwrapRef<typeof import('../config/dns')['default']>
|
|
1089
|
-
readonly dnsPath: UnwrapRef<typeof import('./core/path/src/index')['dnsPath']>
|
|
1090
|
-
readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
|
|
1091
|
-
readonly docsPath: UnwrapRef<typeof import('./core/path/src/index')['docsPath']>
|
|
1092
|
-
readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
|
|
1093
|
-
readonly doesNotContain: UnwrapRef<typeof import('./core/arrays/src/contains')['doesNotContain']>
|
|
1094
|
-
readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
|
|
1095
|
-
readonly dump: UnwrapRef<typeof import('@stacksjs/logging')['dump']>
|
|
1096
|
-
readonly dynamodb: UnwrapRef<typeof import('./core/cache/src/index')['dynamodb']>
|
|
1097
|
-
readonly eagerComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['eagerComputed']>
|
|
1098
|
-
readonly effect: UnwrapRef<typeof import('./core/signals/src/index')['effect']>
|
|
1099
|
-
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
1100
|
-
readonly email: UnwrapRef<typeof import('./core/validation/src/validate')['email']>
|
|
1101
|
-
readonly emailPath: UnwrapRef<typeof import('./core/path/src/index')['emailPath']>
|
|
1102
|
-
readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
|
|
1103
|
-
readonly ensurePrefix: UnwrapRef<typeof import('./core/strings/src/utils')['ensurePrefix']>
|
|
1104
|
-
readonly ensureSuffix: UnwrapRef<typeof import('./core/strings/src/utils')['ensureSuffix']>
|
|
1105
|
-
readonly env: UnwrapRef<typeof import('./core/validation/src/types/env')['env']>
|
|
1106
|
-
readonly envSchema: UnwrapRef<typeof import('./core/validation/src/types/env')['envSchema']>
|
|
1107
|
-
readonly equal: UnwrapRef<typeof import('./core/utils/src/currency')['equal']>
|
|
1108
|
-
readonly err: UnwrapRef<typeof import('./core/error-handling/src/index')['err']>
|
|
1109
|
-
readonly errAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['errAsync']>
|
|
1110
|
-
readonly errorHandlingPath: UnwrapRef<typeof import('./core/path/src/index')['errorHandlingPath']>
|
|
1111
|
-
readonly eslint: UnwrapRef<typeof import('./core/lint/src/index')['eslint']>
|
|
1112
|
-
readonly events: UnwrapRef<typeof import('./core/events/src/index')['events']>
|
|
1113
|
-
readonly eventsPath: UnwrapRef<typeof import('./core/path/src/index')['eventsPath']>
|
|
1114
|
-
readonly examplesPath: UnwrapRef<typeof import('./core/path/src/index')['examplesPath']>
|
|
1115
|
-
readonly exec: UnwrapRef<typeof import('./core/cli/src/run')['exec']>
|
|
1116
|
-
readonly execSync: UnwrapRef<typeof import('./core/cli/src/run')['execSync']>
|
|
1117
|
-
readonly executeTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['executeTransition']>
|
|
1118
|
-
readonly expect: UnwrapRef<typeof import('vitest')['expect']>
|
|
1119
|
-
readonly expo: UnwrapRef<typeof import('./core/push/src/index')['expo']>
|
|
1120
|
-
readonly extendRef: UnwrapRef<typeof import('./core/utils/src/vendors')['extendRef']>
|
|
1121
|
-
readonly extname: UnwrapRef<typeof import('./core/path/src/index')['extname']>
|
|
1122
|
-
readonly faker: UnwrapRef<typeof import('./core/faker/src/index')['faker']>
|
|
1123
|
-
readonly fakerPath: UnwrapRef<typeof import('./core/path/src/index')['fakerPath']>
|
|
1124
|
-
readonly fcm: UnwrapRef<typeof import('./core/push/src/index')['fcm']>
|
|
1125
|
-
readonly feature: UnwrapRef<typeof import('./core/testing/src/index')['feature']>
|
|
1126
|
-
readonly filterName: UnwrapRef<typeof import('./core/search-engine/src/index')['filterName']>
|
|
1127
|
-
readonly filters: UnwrapRef<typeof import('./core/search-engine/src/index')['filters']>
|
|
1128
|
-
readonly flatten: UnwrapRef<typeof import('./core/arrays/src/helpers')['flatten']>
|
|
1129
|
-
readonly format: UnwrapRef<typeof import('./core/path/src/index')['format']>
|
|
1130
|
-
readonly formatTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['formatTimeAgo']>
|
|
1131
|
-
readonly frameworkPath: UnwrapRef<typeof import('./core/path/src/index')['frameworkPath']>
|
|
1132
|
-
readonly frameworkVersion: UnwrapRef<typeof import('./core/utils/src/helpers')['frameworkVersion']>
|
|
1133
|
-
readonly fromPromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromPromise']>
|
|
1134
|
-
readonly fromSafePromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromSafePromise']>
|
|
1135
|
-
readonly fromThrowable: UnwrapRef<typeof import('./core/error-handling/src/index')['fromThrowable']>
|
|
1136
|
-
readonly frontendEnvSchema: UnwrapRef<typeof import('./core/validation/src/types/env')['frontendEnvSchema']>
|
|
1137
|
-
readonly fs: UnwrapRef<typeof import('./core/storage/src/index')['fs']>
|
|
1138
|
-
readonly functionsPath: UnwrapRef<typeof import('./core/path/src/index')['functionsPath']>
|
|
1139
|
-
readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
|
|
1140
|
-
readonly generateFactoryFile: UnwrapRef<typeof import('./core/database/src/factory/index')['generateFactoryFile']>
|
|
1141
|
-
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
1142
|
-
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
1143
|
-
readonly getEnv: UnwrapRef<typeof import('./core/validation/src/types/env')['getEnv']>
|
|
1144
|
-
readonly getSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['getSSRHandler']>
|
|
1145
|
-
readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/base')['getTypeName']>
|
|
1146
|
-
readonly git: UnwrapRef<typeof import('../config/git')['default']>
|
|
1147
|
-
readonly gitPath: UnwrapRef<typeof import('./core/path/src/index')['gitPath']>
|
|
1148
|
-
readonly goToNextPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToNextPage']>
|
|
1149
|
-
readonly goToPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPage']>
|
|
1150
|
-
readonly goToPrevPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPrevPage']>
|
|
1151
|
-
readonly gray: UnwrapRef<typeof import('./core/cli/src/utilities')['gray']>
|
|
1152
|
-
readonly greaterThan: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThan']>
|
|
1153
|
-
readonly greaterThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThanOrEqual']>
|
|
1154
|
-
readonly green: UnwrapRef<typeof import('./core/cli/src/utilities')['green']>
|
|
1155
|
-
readonly gupshup: UnwrapRef<typeof import('./core/sms/src/index')['gupshup']>
|
|
1156
|
-
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
1157
|
-
readonly handleError: UnwrapRef<typeof import('./core/error-handling/src/index')['handleError']>
|
|
1158
|
-
readonly hasComponents: UnwrapRef<typeof import('./core/storage/src/index')['hasComponents']>
|
|
1159
|
-
readonly hasFiles: UnwrapRef<typeof import('./core/storage/src/index')['hasFiles']>
|
|
1160
|
-
readonly hasFunctions: UnwrapRef<typeof import('./core/storage/src/index')['hasFunctions']>
|
|
1161
|
-
readonly hasOwnProperty: UnwrapRef<typeof import('./core/objects/src/index')['hasOwnProperty']>
|
|
1162
|
-
readonly hasScript: UnwrapRef<typeof import('./core/utils/src/helpers')['hasScript']>
|
|
1163
|
-
readonly hasSubUnits: UnwrapRef<typeof import('./core/utils/src/currency')['hasSubUnits']>
|
|
1164
|
-
readonly hashing: UnwrapRef<typeof import('../config/hashing')['default']>
|
|
1165
|
-
readonly haveSameAmount: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameAmount']>
|
|
1166
|
-
readonly haveSameCurrency: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameCurrency']>
|
|
1167
|
-
readonly headerCase: UnwrapRef<typeof import('./core/strings/src/case')['headerCase']>
|
|
1168
|
-
readonly healthPath: UnwrapRef<typeof import('./core/path/src/index')['healthPath']>
|
|
1169
|
-
readonly hidden: UnwrapRef<typeof import('./core/cli/src/utilities')['hidden']>
|
|
1170
|
-
readonly hits: UnwrapRef<typeof import('./core/search-engine/src/index')['hits']>
|
|
1171
|
-
readonly ignorableWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['ignorableWatch']>
|
|
1172
|
-
readonly increment: UnwrapRef<typeof import('../resources/functions/counter')['increment']>
|
|
1173
|
-
readonly index: UnwrapRef<typeof import('./core/search-engine/src/index')['index']>
|
|
1174
|
-
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
1175
|
-
readonly installIfVersionMismatch: UnwrapRef<typeof import('./core/utils/src/helpers')['installIfVersionMismatch']>
|
|
1176
|
-
readonly installPackage: UnwrapRef<typeof import('./core/cli/src/actions/install')['installPackage']>
|
|
1177
|
-
readonly installStack: UnwrapRef<typeof import('./core/cli/src/actions/install')['installStack']>
|
|
1178
|
-
readonly intro: UnwrapRef<typeof import('./core/cli/src/helpers')['intro']>
|
|
1179
|
-
readonly inverse: UnwrapRef<typeof import('./core/cli/src/utilities')['inverse']>
|
|
1180
|
-
readonly isAbsolute: UnwrapRef<typeof import('./core/path/src/index')['isAbsolute']>
|
|
1181
|
-
readonly isAlpha: UnwrapRef<typeof import('./core/validation/src/is')['isAlpha']>
|
|
1182
|
-
readonly isAlphanumeric: UnwrapRef<typeof import('./core/validation/src/is')['isAlphanumeric']>
|
|
1183
|
-
readonly isAppKeySet: UnwrapRef<typeof import('./core/utils/src/helpers')['isAppKeySet']>
|
|
1184
|
-
readonly isArray: UnwrapRef<typeof import('./core/validation/src/is')['isArray']>
|
|
1185
|
-
readonly isAscii: UnwrapRef<typeof import('./core/validation/src/is')['isAscii']>
|
|
1186
|
-
readonly isBase32: UnwrapRef<typeof import('./core/validation/src/is')['isBase32']>
|
|
1187
|
-
readonly isBase64: UnwrapRef<typeof import('./core/validation/src/is')['isBase64']>
|
|
1188
|
-
readonly isBoolean: UnwrapRef<typeof import('./core/validation/src/is')['isBoolean']>
|
|
1189
|
-
readonly isBrowser: UnwrapRef<typeof import('./core/validation/src/is')['isBrowser']>
|
|
1190
|
-
readonly isByteLength: UnwrapRef<typeof import('./core/validation/src/is')['isByteLength']>
|
|
1191
|
-
readonly isCreditCard: UnwrapRef<typeof import('./core/validation/src/is')['isCreditCard']>
|
|
1192
|
-
readonly isCurrency: UnwrapRef<typeof import('./core/validation/src/is')['isCurrency']>
|
|
1193
|
-
readonly isDark: UnwrapRef<typeof import('../resources/functions/dark')['isDark']>
|
|
1194
|
-
readonly isDataURI: UnwrapRef<typeof import('./core/validation/src/is')['isDataURI']>
|
|
1195
|
-
readonly isDate: UnwrapRef<typeof import('./core/validation/src/is')['isDate']>
|
|
1196
|
-
readonly isDeepEqual: UnwrapRef<typeof import('./core/utils/src/equal')['isDeepEqual']>
|
|
1197
|
-
readonly isDef: UnwrapRef<typeof import('./core/validation/src/is')['isDef']>
|
|
1198
|
-
readonly isDefined: UnwrapRef<typeof import('./core/utils/src/vendors')['isDefined']>
|
|
1199
|
-
readonly isEmail: UnwrapRef<typeof import('./core/validation/src/is')['isEmail']>
|
|
1200
|
-
readonly isEven: UnwrapRef<typeof import('./core/validation/src/is')['isEven']>
|
|
1201
|
-
readonly isEvenOrOdd: UnwrapRef<typeof import('./core/validation/src/is')['isEvenOrOdd']>
|
|
1202
|
-
readonly isFQDN: UnwrapRef<typeof import('./core/validation/src/is')['isFQDN']>
|
|
1203
|
-
readonly isFile: UnwrapRef<typeof import('./core/storage/src/index')['isFile']>
|
|
1204
|
-
readonly isFloat: UnwrapRef<typeof import('./core/validation/src/is')['isFloat']>
|
|
1205
|
-
readonly isFolder: UnwrapRef<typeof import('./core/storage/src/index')['isFolder']>
|
|
1206
|
-
readonly isFullWidth: UnwrapRef<typeof import('./core/validation/src/is')['isFullWidth']>
|
|
1207
|
-
readonly isFunction: UnwrapRef<typeof import('./core/validation/src/is')['isFunction']>
|
|
1208
|
-
readonly isHSL: UnwrapRef<typeof import('./core/validation/src/is')['isHSL']>
|
|
1209
|
-
readonly isHalfWidth: UnwrapRef<typeof import('./core/validation/src/is')['isHalfWidth']>
|
|
1210
|
-
readonly isHash: UnwrapRef<typeof import('./core/validation/src/is')['isHash']>
|
|
1211
|
-
readonly isHexColor: UnwrapRef<typeof import('./core/validation/src/is')['isHexColor']>
|
|
1212
|
-
readonly isHexadecimal: UnwrapRef<typeof import('./core/validation/src/is')['isHexadecimal']>
|
|
1213
|
-
readonly isIBAN: UnwrapRef<typeof import('./core/validation/src/is')['isIBAN']>
|
|
1214
|
-
readonly isIP: UnwrapRef<typeof import('./core/validation/src/is')['isIP']>
|
|
1215
|
-
readonly isIPRange: UnwrapRef<typeof import('./core/validation/src/is')['isIPRange']>
|
|
1216
|
-
readonly isISBN: UnwrapRef<typeof import('./core/validation/src/is')['isISBN']>
|
|
1217
|
-
readonly isISIN: UnwrapRef<typeof import('./core/validation/src/is')['isISIN']>
|
|
1218
|
-
readonly isISO31661Alpha2: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha2']>
|
|
1219
|
-
readonly isISO31661Alpha3: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha3']>
|
|
1220
|
-
readonly isISO8601: UnwrapRef<typeof import('./core/validation/src/is')['isISO8601']>
|
|
1221
|
-
readonly isISRC: UnwrapRef<typeof import('./core/validation/src/is')['isISRC']>
|
|
1222
|
-
readonly isISSN: UnwrapRef<typeof import('./core/validation/src/is')['isISSN']>
|
|
1223
|
-
readonly isIdentityCard: UnwrapRef<typeof import('./core/validation/src/is')['isIdentityCard']>
|
|
1224
|
-
readonly isInteger: UnwrapRef<typeof import('./core/validation/src/is')['isInteger']>
|
|
1225
|
-
readonly isIntegerOrFloat: UnwrapRef<typeof import('./core/validation/src/is')['isIntegerOrFloat']>
|
|
1226
|
-
readonly isIpv6: UnwrapRef<typeof import('./core/utils/src/helpers')['isIpv6']>
|
|
1227
|
-
readonly isJSON: UnwrapRef<typeof import('./core/validation/src/is')['isJSON']>
|
|
1228
|
-
readonly isJWT: UnwrapRef<typeof import('./core/validation/src/is')['isJWT']>
|
|
1229
|
-
readonly isKeyOf: UnwrapRef<typeof import('./core/objects/src/index')['isKeyOf']>
|
|
1230
|
-
readonly isLatLong: UnwrapRef<typeof import('./core/validation/src/is')['isLatLong']>
|
|
1231
|
-
readonly isLatitude: UnwrapRef<typeof import('./core/validation/src/is')['isLatitude']>
|
|
1232
|
-
readonly isLongitude: UnwrapRef<typeof import('./core/validation/src/is')['isLongitude']>
|
|
1233
|
-
readonly isMACAddress: UnwrapRef<typeof import('./core/validation/src/is')['isMACAddress']>
|
|
1234
|
-
readonly isManifest: UnwrapRef<typeof import('./core/utils/src/helpers')['isManifest']>
|
|
1235
|
-
readonly isMap: UnwrapRef<typeof import('./core/validation/src/is')['isMap']>
|
|
1236
|
-
readonly isMimeType: UnwrapRef<typeof import('./core/validation/src/is')['isMimeType']>
|
|
1237
|
-
readonly isMobilePhone: UnwrapRef<typeof import('./core/validation/src/is')['isMobilePhone']>
|
|
1238
|
-
readonly isMoney: UnwrapRef<typeof import('./core/validation/src/is')['isMoney']>
|
|
1239
|
-
readonly isNegative: UnwrapRef<typeof import('./core/validation/src/is')['isNegative']>
|
|
1240
|
-
readonly isNull: UnwrapRef<typeof import('./core/validation/src/is')['isNull']>
|
|
1241
|
-
readonly isNumber: UnwrapRef<typeof import('./core/validation/src/is')['isNumber']>
|
|
1242
|
-
readonly isNumeric: UnwrapRef<typeof import('./core/validation/src/is')['isNumeric']>
|
|
1243
|
-
readonly isObject: UnwrapRef<typeof import('./core/validation/src/is')['isObject']>
|
|
1244
|
-
readonly isOdd: UnwrapRef<typeof import('./core/validation/src/is')['isOdd']>
|
|
1245
|
-
readonly isOptionalString: UnwrapRef<typeof import('./core/utils/src/helpers')['isOptionalString']>
|
|
1246
|
-
readonly isPlural: UnwrapRef<typeof import('./core/strings/src/pluralize')['isPlural']>
|
|
1247
|
-
readonly isPositive: UnwrapRef<typeof import('./core/validation/src/is')['isPositive']>
|
|
1248
|
-
readonly isPositiveOrNegative: UnwrapRef<typeof import('./core/validation/src/is')['isPositiveOrNegative']>
|
|
1249
|
-
readonly isPostalCode: UnwrapRef<typeof import('./core/validation/src/is')['isPostalCode']>
|
|
1250
|
-
readonly isPrimitive: UnwrapRef<typeof import('./core/validation/src/is')['isPrimitive']>
|
|
1251
|
-
readonly isProjectCreated: UnwrapRef<typeof import('./core/utils/src/helpers')['isProjectCreated']>
|
|
1252
|
-
readonly isPromise: UnwrapRef<typeof import('./core/validation/src/is')['isPromise']>
|
|
1253
|
-
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
|
1254
|
-
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
1255
|
-
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
1256
|
-
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
1257
|
-
readonly isRegExp: UnwrapRef<typeof import('./core/validation/src/is')['isRegExp']>
|
|
1258
|
-
readonly isServer: UnwrapRef<typeof import('./core/validation/src/is')['isServer']>
|
|
1259
|
-
readonly isSet: UnwrapRef<typeof import('./core/validation/src/is')['isSet']>
|
|
1260
|
-
readonly isSingular: UnwrapRef<typeof import('./core/strings/src/pluralize')['isSingular']>
|
|
1261
|
-
readonly isString: UnwrapRef<typeof import('./core/validation/src/is')['isString']>
|
|
1262
|
-
readonly isStrongPassword: UnwrapRef<typeof import('./core/validation/src/is')['isStrongPassword']>
|
|
1263
|
-
readonly isSymbol: UnwrapRef<typeof import('./core/validation/src/is')['isSymbol']>
|
|
1264
|
-
readonly isTruthy: UnwrapRef<typeof import('./core/utils/src/guards')['isTruthy']>
|
|
1265
|
-
readonly isURL: UnwrapRef<typeof import('./core/validation/src/is')['isURL']>
|
|
1266
|
-
readonly isUUID: UnwrapRef<typeof import('./core/validation/src/is')['isUUID']>
|
|
1267
|
-
readonly isUndefined: UnwrapRef<typeof import('./core/validation/src/is')['isUndefined']>
|
|
1268
|
-
readonly isWindow: UnwrapRef<typeof import('./core/validation/src/is')['isWindow']>
|
|
1269
|
-
readonly isZero: UnwrapRef<typeof import('./core/utils/src/currency')['isZero']>
|
|
1270
|
-
readonly it: UnwrapRef<typeof import('vitest')['it']>
|
|
1271
|
-
readonly italic: UnwrapRef<typeof import('./core/cli/src/utilities')['italic']>
|
|
1272
|
-
readonly join: UnwrapRef<typeof import('./core/path/src/index')['join']>
|
|
1273
|
-
readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/case')['kebabCase']>
|
|
1274
|
-
readonly langPath: UnwrapRef<typeof import('./core/path/src/index')['langPath']>
|
|
1275
|
-
readonly last: UnwrapRef<typeof import('./core/arrays/src/helpers')['last']>
|
|
1276
|
-
readonly lastPageNumber: UnwrapRef<typeof import('./core/search-engine/src/index')['lastPageNumber']>
|
|
1277
|
-
readonly lessThan: UnwrapRef<typeof import('./core/utils/src/currency')['lessThan']>
|
|
1278
|
-
readonly lessThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['lessThanOrEqual']>
|
|
1279
|
-
readonly library: UnwrapRef<typeof import('../config/library')['default']>
|
|
1280
|
-
readonly libraryEntryPath: UnwrapRef<typeof import('./core/path/src/index')['libraryEntryPath']>
|
|
1281
|
-
readonly libsEntriesPath: UnwrapRef<typeof import('./core/path/src/index')['libsEntriesPath']>
|
|
1282
|
-
readonly libsPath: UnwrapRef<typeof import('./core/path/src/index')['libsPath']>
|
|
1283
|
-
readonly lightBlue: UnwrapRef<typeof import('./core/cli/src/utilities')['lightBlue']>
|
|
1284
|
-
readonly lightCyan: UnwrapRef<typeof import('./core/cli/src/utilities')['lightCyan']>
|
|
1285
|
-
readonly lightGray: UnwrapRef<typeof import('./core/cli/src/utilities')['lightGray']>
|
|
1286
|
-
readonly lightGreen: UnwrapRef<typeof import('./core/cli/src/utilities')['lightGreen']>
|
|
1287
|
-
readonly lightMagenta: UnwrapRef<typeof import('./core/cli/src/utilities')['lightMagenta']>
|
|
1288
|
-
readonly lightRed: UnwrapRef<typeof import('./core/cli/src/utilities')['lightRed']>
|
|
1289
|
-
readonly lightYellow: UnwrapRef<typeof import('./core/cli/src/utilities')['lightYellow']>
|
|
1290
|
-
readonly link: UnwrapRef<typeof import('./core/cli/src/utilities')['link']>
|
|
1291
|
-
readonly lintPath: UnwrapRef<typeof import('./core/path/src/index')['lintPath']>
|
|
1292
|
-
readonly listen: UnwrapRef<typeof import('./core/events/src/index')['listen']>
|
|
1293
|
-
readonly log: UnwrapRef<typeof import('./core/cli/src/console')['log']>
|
|
1294
|
-
readonly loggingPath: UnwrapRef<typeof import('./core/path/src/index')['loggingPath']>
|
|
1295
|
-
readonly logicNot: UnwrapRef<typeof import('./core/utils/src/math')['logicNot']>
|
|
1296
|
-
readonly logicOr: UnwrapRef<typeof import('./core/utils/src/math')['logicOr']>
|
|
1297
|
-
readonly logsPath: UnwrapRef<typeof import('./core/path/src/index')['logsPath']>
|
|
1298
|
-
readonly loop: UnwrapRef<typeof import('./core/utils/src/base')['loop']>
|
|
1299
|
-
readonly magenta: UnwrapRef<typeof import('./core/cli/src/utilities')['magenta']>
|
|
1300
|
-
readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
|
|
1301
|
-
readonly mapGamepadToXbox360Controller: UnwrapRef<typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']>
|
|
1302
|
-
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
|
1303
|
-
readonly maximum: UnwrapRef<typeof import('./core/utils/src/currency')['maximum']>
|
|
1304
|
-
readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
|
|
1305
|
-
readonly median: UnwrapRef<typeof import('./core/arrays/src/math')['median']>
|
|
1306
|
-
readonly memcached: UnwrapRef<typeof import('./core/cache/src/index')['memcached']>
|
|
1307
|
-
readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/helpers')['mergeArrayable']>
|
|
1308
|
-
readonly migrate: UnwrapRef<typeof import('./core/database/src/migrations/index')['migrate']>
|
|
1309
|
-
readonly minimum: UnwrapRef<typeof import('./core/utils/src/currency')['minimum']>
|
|
1310
|
-
readonly mitt: UnwrapRef<typeof import('./core/events/src/index')['mitt']>
|
|
1311
|
-
readonly mode: UnwrapRef<typeof import('./core/arrays/src/math')['mode']>
|
|
1312
|
-
readonly modelsPath: UnwrapRef<typeof import('./core/path/src/index')['modelsPath']>
|
|
1313
|
-
readonly modulesPath: UnwrapRef<typeof import('./core/path/src/index')['modulesPath']>
|
|
1314
|
-
readonly money: UnwrapRef<typeof import('./core/utils/src/currency')['money']>
|
|
1315
|
-
readonly move: UnwrapRef<typeof import('./core/arrays/src/helpers')['move']>
|
|
1316
|
-
readonly multiply: UnwrapRef<typeof import('./core/utils/src/currency')['multiply']>
|
|
1317
|
-
readonly nexmo: UnwrapRef<typeof import('./core/sms/src/index')['nexmo']>
|
|
1318
|
-
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
|
1319
|
-
readonly noCase: UnwrapRef<typeof import('./core/strings/src/case')['noCase']>
|
|
1320
|
-
readonly noNull: UnwrapRef<typeof import('./core/utils/src/guards')['noNull']>
|
|
1321
|
-
readonly normalize: UnwrapRef<typeof import('./core/path/src/index')['normalize']>
|
|
1322
|
-
readonly normalizeScale: UnwrapRef<typeof import('./core/utils/src/currency')['normalizeScale']>
|
|
1323
|
-
readonly normalizeString: UnwrapRef<typeof import('./core/path/src/index')['normalizeString']>
|
|
1324
|
-
readonly not: UnwrapRef<typeof import('./core/utils/src/math')['not']>
|
|
1325
|
-
readonly notNullish: UnwrapRef<typeof import('./core/utils/src/guards')['notNullish']>
|
|
1326
|
-
readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
|
|
1327
|
-
readonly notification: UnwrapRef<typeof import('../config/notification')['default']>
|
|
1328
|
-
readonly notificationsPath: UnwrapRef<typeof import('./core/path/src/index')['notificationsPath']>
|
|
1329
|
-
readonly now: UnwrapRef<typeof import('./core/datetime/src/index')['now']>
|
|
1330
|
-
readonly number: UnwrapRef<typeof import('./core/validation/src/validate')['number']>
|
|
1331
|
-
readonly object: UnwrapRef<typeof import('./core/validation/src/validate')['object']>
|
|
1332
|
-
readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
|
|
1333
|
-
readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
|
|
1334
|
-
readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
|
|
1335
|
-
readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
|
|
1336
|
-
readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
|
|
1337
|
-
readonly off: UnwrapRef<typeof import('./core/events/src/index')['off']>
|
|
1338
|
-
readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
|
|
1339
|
-
readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
|
|
1340
|
-
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
|
1341
|
-
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
|
1342
|
-
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
|
1343
|
-
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
|
|
1344
|
-
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
|
|
1345
|
-
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
|
|
1346
|
-
readonly onClickOutside: UnwrapRef<typeof import('./core/utils/src/vendors')['onClickOutside']>
|
|
1347
|
-
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
|
|
1348
|
-
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
|
|
1349
|
-
readonly onKeyDown: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyDown']>
|
|
1350
|
-
readonly onKeyPressed: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyPressed']>
|
|
1351
|
-
readonly onKeyStroke: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyStroke']>
|
|
1352
|
-
readonly onKeyUp: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyUp']>
|
|
1353
|
-
readonly onLongPress: UnwrapRef<typeof import('./core/utils/src/vendors')['onLongPress']>
|
|
1354
|
-
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
|
1355
|
-
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
|
1356
|
-
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
|
1357
|
-
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
|
1358
|
-
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
|
|
1359
|
-
readonly onStartTyping: UnwrapRef<typeof import('./core/utils/src/vendors')['onStartTyping']>
|
|
1360
|
-
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
|
1361
|
-
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
|
1362
|
-
readonly onboardingPath: UnwrapRef<typeof import('./core/path/src/index')['onboardingPath']>
|
|
1363
|
-
readonly or: UnwrapRef<typeof import('./core/utils/src/math')['or']>
|
|
1364
|
-
readonly ormPath: UnwrapRef<typeof import('./core/path/src/index')['ormPath']>
|
|
1365
|
-
readonly outro: UnwrapRef<typeof import('./core/cli/src/helpers')['outro']>
|
|
1366
|
-
readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
|
|
1367
|
-
readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
|
|
1368
|
-
readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
|
|
1369
|
-
readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
|
|
1370
|
-
readonly parse: UnwrapRef<typeof import('./core/path/src/index')['parse']>
|
|
1371
|
-
readonly parseArgs: UnwrapRef<typeof import('./core/cli/src/parse')['parseArgs']>
|
|
1372
|
-
readonly parseArgv: UnwrapRef<typeof import('./core/cli/src/parse')['parseArgv']>
|
|
1373
|
-
readonly parseOptions: UnwrapRef<typeof import('./core/cli/src/parse')['parseOptions']>
|
|
1374
|
-
readonly parseYaml: UnwrapRef<typeof import('./core/utils/src/helpers')['parseYaml']>
|
|
1375
|
-
readonly partition: UnwrapRef<typeof import('./core/arrays/src/helpers')['partition']>
|
|
1376
|
-
readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
|
|
1377
|
-
readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
|
|
1378
|
-
readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
|
|
1379
|
-
readonly pathPath: UnwrapRef<typeof import('./core/path/src/index')['pathPath']>
|
|
1380
|
-
readonly payment: UnwrapRef<typeof import('../config/payment')['default']>
|
|
1381
|
-
readonly paymentsPath: UnwrapRef<typeof import('./core/path/src/index')['paymentsPath']>
|
|
1382
|
-
readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
|
|
1383
|
-
readonly plivo: UnwrapRef<typeof import('./core/sms/src/index')['plivo']>
|
|
1384
|
-
readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
|
|
1385
|
-
readonly preferredDark: UnwrapRef<typeof import('../resources/functions/dark')['preferredDark']>
|
|
1386
|
-
readonly presetForms: UnwrapRef<typeof import('@stacksjs/ui')['presetForms']>
|
|
1387
|
-
readonly projectConfigPath: UnwrapRef<typeof import('./core/path/src/index')['projectConfigPath']>
|
|
1388
|
-
readonly projectPath: UnwrapRef<typeof import('./core/path/src/index')['projectPath']>
|
|
1389
|
-
readonly projectStoragePath: UnwrapRef<typeof import('./core/path/src/index')['projectStoragePath']>
|
|
1390
|
-
readonly prompt: UnwrapRef<typeof import('./core/cli/src/console')['prompt']>
|
|
1391
|
-
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
|
1392
|
-
readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
|
|
1393
|
-
readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
|
|
1394
|
-
readonly queryBuilderPath: UnwrapRef<typeof import('./core/path/src/index')['queryBuilderPath']>
|
|
1395
|
-
readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
|
|
1396
|
-
readonly rand: UnwrapRef<typeof import('./core/utils/src/math')['rand']>
|
|
1397
|
-
readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
|
|
1398
|
-
readonly range: UnwrapRef<typeof import('./core/arrays/src/helpers')['range']>
|
|
1399
|
-
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
|
1400
|
-
readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
|
|
1401
|
-
readonly readPackageJson: UnwrapRef<typeof import('./core/storage/src/index')['readPackageJson']>
|
|
1402
|
-
readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
|
|
1403
|
-
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
|
1404
|
-
readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
|
|
1405
|
-
readonly red: UnwrapRef<typeof import('./core/cli/src/utilities')['red']>
|
|
1406
|
-
readonly redis: UnwrapRef<typeof import('./core/cache/src/index')['redis']>
|
|
1407
|
-
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
|
1408
|
-
readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
|
|
1409
|
-
readonly remove: UnwrapRef<typeof import('./core/arrays/src/helpers')['remove']>
|
|
1410
|
-
readonly renderHeadToString: UnwrapRef<typeof import('./core/utils/src/vendors')['renderHeadToString']>
|
|
1411
|
-
readonly reset: UnwrapRef<typeof import('./core/cli/src/utilities')['reset']>
|
|
1412
|
-
readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
|
|
1413
|
-
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
1414
|
-
readonly resourcesPath: UnwrapRef<typeof import('./core/path/src/index')['resourcesPath']>
|
|
1415
|
-
readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
|
|
1416
|
-
readonly rimraf: UnwrapRef<typeof import('./core/utils/src/delete')['rimraf']>
|
|
1417
|
-
readonly root: UnwrapRef<typeof import('./core/signals/src/index')['root']>
|
|
1418
|
-
readonly route: UnwrapRef<typeof import('./core/router/src/index')['route']>
|
|
1419
|
-
readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
|
|
1420
|
-
readonly routesPath: UnwrapRef<typeof import('./core/path/src/index')['routesPath']>
|
|
1421
|
-
readonly runCommand: UnwrapRef<typeof import('./core/cli/src/run')['runCommand']>
|
|
1422
|
-
readonly runCommands: UnwrapRef<typeof import('./core/cli/src/run')['runCommands']>
|
|
1423
|
-
readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
|
|
1424
|
-
readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
|
|
1425
|
-
readonly sample: UnwrapRef<typeof import('./core/arrays/src/helpers')['sample']>
|
|
1426
|
-
readonly schedulerPath: UnwrapRef<typeof import('./core/path/src/index')['schedulerPath']>
|
|
1427
|
-
readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
|
|
1428
|
-
readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
|
|
1429
|
-
readonly searchEnginePath: UnwrapRef<typeof import('./core/path/src/index')['searchEnginePath']>
|
|
1430
|
-
readonly searchFilters: UnwrapRef<typeof import('./core/search-engine/src/index')['searchFilters']>
|
|
1431
|
-
readonly searchParams: UnwrapRef<typeof import('./core/search-engine/src/index')['searchParams']>
|
|
1432
|
-
readonly securityPath: UnwrapRef<typeof import('./core/path/src/index')['securityPath']>
|
|
1433
|
-
readonly seed: UnwrapRef<typeof import('./core/database/src/seeder/index')['seed']>
|
|
1434
|
-
readonly semver: UnwrapRef<typeof import('./core/utils/src/versions')['semver']>
|
|
1435
|
-
readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/case')['sentenceCase']>
|
|
1436
|
-
readonly sep: UnwrapRef<typeof import('./core/path/src/index')['sep']>
|
|
1437
|
-
readonly serverPath: UnwrapRef<typeof import('./core/path/src/index')['serverPath']>
|
|
1438
|
-
readonly serverlessPath: UnwrapRef<typeof import('./core/path/src/index')['serverlessPath']>
|
|
1439
|
-
readonly services: UnwrapRef<typeof import('../config/services')['default']>
|
|
1440
|
-
readonly setEnvValue: UnwrapRef<typeof import('./core/utils/src/helpers')['setEnvValue']>
|
|
1441
|
-
readonly setSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['setSSRHandler']>
|
|
1442
|
-
readonly setTotalHits: UnwrapRef<typeof import('./core/search-engine/src/index')['setTotalHits']>
|
|
1443
|
-
readonly settingsPath: UnwrapRef<typeof import('./core/path/src/index')['settingsPath']>
|
|
1444
|
-
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
1445
|
-
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
1446
|
-
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
1447
|
-
readonly shuffle: UnwrapRef<typeof import('./core/arrays/src/helpers')['shuffle']>
|
|
1448
|
-
readonly signal: UnwrapRef<typeof import('./core/signals/src/index')['signal']>
|
|
1449
|
-
readonly signalsPath: UnwrapRef<typeof import('./core/path/src/index')['signalsPath']>
|
|
1450
|
-
readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
|
|
1451
|
-
readonly slack: UnwrapRef<typeof import('./core/chat/src/index')['slack']>
|
|
1452
|
-
readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
|
|
1453
|
-
readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
|
|
1454
|
-
readonly slug: UnwrapRef<typeof import('./core/strings/src/utils')['slug']>
|
|
1455
|
-
readonly slugPath: UnwrapRef<typeof import('./core/path/src/index')['slugPath']>
|
|
1456
|
-
readonly sms77: UnwrapRef<typeof import('./core/sms/src/index')['sms77']>
|
|
1457
|
-
readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
|
|
1458
|
-
readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
|
|
1459
|
-
readonly sns: UnwrapRef<typeof import('./core/sms/src/index')['sns']>
|
|
1460
|
-
readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
|
|
1461
|
-
readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
|
|
1462
|
-
readonly spawn: UnwrapRef<typeof import('./core/cli/src/command')['spawn']>
|
|
1463
|
-
readonly spinner: UnwrapRef<typeof import('./core/cli/src/spinner')['spinner']>
|
|
1464
|
-
readonly sql: UnwrapRef<typeof import('./core/query-builder/src/kysely')['sql']>
|
|
1465
|
-
readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
|
|
1466
|
-
readonly startSpinner: UnwrapRef<typeof import('./core/cli/src/helpers')['startSpinner']>
|
|
1467
|
-
readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
|
|
1468
|
-
readonly storagePath: UnwrapRef<typeof import('./core/path/src/index')['storagePath']>
|
|
1469
|
-
readonly storesPath: UnwrapRef<typeof import('./core/path/src/index')['storesPath']>
|
|
1470
|
-
readonly str: UnwrapRef<typeof import('./core/strings/src/macro')['str']>
|
|
1471
|
-
readonly strikethrough: UnwrapRef<typeof import('./core/cli/src/utilities')['strikethrough']>
|
|
1472
|
-
readonly string: UnwrapRef<typeof import('./core/validation/src/validate')['string']>
|
|
1473
|
-
readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
|
|
1474
|
-
readonly stripe: UnwrapRef<typeof import('./core/payments/src/index')['stripe']>
|
|
1475
|
-
readonly subtract: UnwrapRef<typeof import('./core/utils/src/currency')['subtract']>
|
|
1476
|
-
readonly suite: UnwrapRef<typeof import('vitest')['suite']>
|
|
1477
|
-
readonly sum: UnwrapRef<typeof import('./core/arrays/src/math')['sum']>
|
|
1478
|
-
readonly syncRef: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRef']>
|
|
1479
|
-
readonly syncRefs: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRefs']>
|
|
1480
|
-
readonly tailwindConfig: UnwrapRef<typeof import('./core/notifications/src/tailwind.config')['default']>
|
|
1481
|
-
readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
|
|
1482
|
-
readonly teams: UnwrapRef<typeof import('./core/chat/src/index')['teams']>
|
|
1483
|
-
readonly telnyx: UnwrapRef<typeof import('./core/sms/src/index')['telnyx']>
|
|
1484
|
-
readonly template: UnwrapRef<typeof import('./core/strings/src/utils')['template']>
|
|
1485
|
-
readonly templateRef: UnwrapRef<typeof import('./core/utils/src/vendors')['templateRef']>
|
|
1486
|
-
readonly termii: UnwrapRef<typeof import('./core/sms/src/index')['termii']>
|
|
1487
|
-
readonly test: UnwrapRef<typeof import('vitest')['test']>
|
|
1488
|
-
readonly testingPath: UnwrapRef<typeof import('./core/path/src/index')['testingPath']>
|
|
1489
|
-
readonly testsPath: UnwrapRef<typeof import('./core/path/src/index')['testsPath']>
|
|
1490
|
-
readonly throttle: UnwrapRef<typeof import('./core/utils/src/throttle')['throttle']>
|
|
1491
|
-
readonly throttledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledRef']>
|
|
1492
|
-
readonly throttledWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledWatch']>
|
|
1493
|
-
readonly tick: UnwrapRef<typeof import('./core/signals/src/index')['tick']>
|
|
1494
|
-
readonly titleCase: UnwrapRef<typeof import('./core/strings/src/case')['titleCase']>
|
|
1495
|
-
readonly toArray: UnwrapRef<typeof import('./core/arrays/src/helpers')['toArray']>
|
|
1496
|
-
readonly toDecimal: UnwrapRef<typeof import('./core/utils/src/currency')['toDecimal']>
|
|
1497
|
-
readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
|
|
1498
|
-
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
|
1499
|
-
readonly toReactive: UnwrapRef<typeof import('./core/utils/src/vendors')['toReactive']>
|
|
1500
|
-
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
|
1501
|
-
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
|
1502
|
-
readonly toSnapshot: UnwrapRef<typeof import('./core/utils/src/currency')['toSnapshot']>
|
|
1503
|
-
readonly toString: UnwrapRef<typeof import('./core/utils/src/base')['toString']>
|
|
1504
|
-
readonly toUnits: UnwrapRef<typeof import('./core/utils/src/currency')['toUnits']>
|
|
1505
|
-
readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
|
|
1506
|
-
readonly toggleDark: UnwrapRef<typeof import('../resources/functions/dark')['toggleDark']>
|
|
1507
|
-
readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
|
|
1508
|
-
readonly transformerCompileClass: UnwrapRef<typeof import('@stacksjs/ui')['transformerCompileClass']>
|
|
1509
|
-
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
|
1510
|
-
readonly trimScale: UnwrapRef<typeof import('./core/utils/src/currency')['trimScale']>
|
|
1511
|
-
readonly truncate: UnwrapRef<typeof import('./core/strings/src/utils')['truncate']>
|
|
1512
|
-
readonly tryOnBeforeMount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeMount']>
|
|
1513
|
-
readonly tryOnBeforeUnmount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']>
|
|
1514
|
-
readonly tryOnMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnMounted']>
|
|
1515
|
-
readonly tryOnScopeDispose: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnScopeDispose']>
|
|
1516
|
-
readonly tryOnUnmounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnUnmounted']>
|
|
1517
|
-
readonly twilio: UnwrapRef<typeof import('./core/sms/src/index')['twilio']>
|
|
1518
|
-
readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
|
|
1519
|
-
readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
|
|
1520
|
-
readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
|
|
1521
|
-
readonly underline: UnwrapRef<typeof import('./core/cli/src/utilities')['underline']>
|
|
1522
|
-
readonly uniq: UnwrapRef<typeof import('./core/arrays/src/helpers')['uniq']>
|
|
1523
|
-
readonly unique: UnwrapRef<typeof import('./core/arrays/src/helpers')['unique']>
|
|
1524
|
-
readonly uniqueBy: UnwrapRef<typeof import('./core/arrays/src/helpers')['uniqueBy']>
|
|
1525
|
-
readonly unit: UnwrapRef<typeof import('./core/testing/src/index')['unit']>
|
|
1526
|
-
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
|
1527
|
-
readonly unrefElement: UnwrapRef<typeof import('./core/utils/src/vendors')['unrefElement']>
|
|
1528
|
-
readonly until: UnwrapRef<typeof import('./core/utils/src/vendors')['until']>
|
|
1529
|
-
readonly updateConfigFile: UnwrapRef<typeof import('./core/storage/src/index')['updateConfigFile']>
|
|
1530
|
-
readonly upstash: UnwrapRef<typeof import('./core/cache/src/index')['upstash']>
|
|
1531
|
-
readonly useAbs: UnwrapRef<typeof import('./core/utils/src/math')['useAbs']>
|
|
1532
|
-
readonly useActiveElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useActiveElement']>
|
|
1533
|
-
readonly useAnimate: UnwrapRef<typeof import('./core/utils/src/vendors')['useAnimate']>
|
|
1534
|
-
readonly useAsyncQueue: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncQueue']>
|
|
1535
|
-
readonly useAsyncState: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncState']>
|
|
1536
|
-
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
|
1537
|
-
readonly useAverage: UnwrapRef<typeof import('./core/utils/src/math')['useAverage']>
|
|
1538
|
-
readonly useBase64: UnwrapRef<typeof import('./core/utils/src/vendors')['useBase64']>
|
|
1539
|
-
readonly useBattery: UnwrapRef<typeof import('./core/utils/src/vendors')['useBattery']>
|
|
1540
|
-
readonly useBluetooth: UnwrapRef<typeof import('./core/utils/src/vendors')['useBluetooth']>
|
|
1541
|
-
readonly useBreakpoints: UnwrapRef<typeof import('./core/utils/src/vendors')['useBreakpoints']>
|
|
1542
|
-
readonly useBroadcastChannel: UnwrapRef<typeof import('./core/utils/src/vendors')['useBroadcastChannel']>
|
|
1543
|
-
readonly useBrowserLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useBrowserLocation']>
|
|
1544
|
-
readonly useCached: UnwrapRef<typeof import('./core/utils/src/vendors')['useCached']>
|
|
1545
|
-
readonly useCeil: UnwrapRef<typeof import('./core/utils/src/math')['useCeil']>
|
|
1546
|
-
readonly useChat: UnwrapRef<typeof import('./core/notifications/src/index')['useChat']>
|
|
1547
|
-
readonly useClamp: UnwrapRef<typeof import('./core/utils/src/math')['useClamp']>
|
|
1548
|
-
readonly useClipboard: UnwrapRef<typeof import('./core/utils/src/vendors')['useClipboard']>
|
|
1549
|
-
readonly useCloned: UnwrapRef<typeof import('./core/utils/src/vendors')['useCloned']>
|
|
1550
|
-
readonly useColorMode: UnwrapRef<typeof import('./core/utils/src/vendors')['useColorMode']>
|
|
1551
|
-
readonly useConfirmDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useConfirmDialog']>
|
|
1552
|
-
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
|
1553
|
-
readonly useCssVar: UnwrapRef<typeof import('./core/utils/src/vendors')['useCssVar']>
|
|
1554
|
-
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
|
|
1555
|
-
readonly useCurrentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useCurrentElement']>
|
|
1556
|
-
readonly useCycleList: UnwrapRef<typeof import('./core/utils/src/vendors')['useCycleList']>
|
|
1557
|
-
readonly useDark: UnwrapRef<typeof import('./core/utils/src/vendors')['useDark']>
|
|
1558
|
-
readonly useDateFormat: UnwrapRef<typeof import('./core/utils/src/vendors')['useDateFormat']>
|
|
1559
|
-
readonly useDebouncedRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useDebouncedRefHistory']>
|
|
1560
|
-
readonly useDeviceMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceMotion']>
|
|
1561
|
-
readonly useDeviceOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceOrientation']>
|
|
1562
|
-
readonly useDevicePixelRatio: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicePixelRatio']>
|
|
1563
|
-
readonly useDevicesList: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicesList']>
|
|
1564
|
-
readonly useDisplayMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useDisplayMedia']>
|
|
1565
|
-
readonly useDocumentVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useDocumentVisibility']>
|
|
1566
|
-
readonly useDraggable: UnwrapRef<typeof import('./core/utils/src/vendors')['useDraggable']>
|
|
1567
|
-
readonly useDropZone: UnwrapRef<typeof import('./core/utils/src/vendors')['useDropZone']>
|
|
1568
|
-
readonly useElementBounding: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementBounding']>
|
|
1569
|
-
readonly useElementByPoint: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementByPoint']>
|
|
1570
|
-
readonly useElementHover: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementHover']>
|
|
1571
|
-
readonly useElementSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementSize']>
|
|
1572
|
-
readonly useElementVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementVisibility']>
|
|
1573
|
-
readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
|
|
1574
|
-
readonly useEvent: UnwrapRef<typeof import('./core/events/src/index')['useEvent']>
|
|
1575
|
-
readonly useEventBus: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventBus']>
|
|
1576
|
-
readonly useEventListener: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventListener']>
|
|
1577
|
-
readonly useEventSource: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventSource']>
|
|
1578
|
-
readonly useEvents: UnwrapRef<typeof import('./core/events/src/index')['useEvents']>
|
|
1579
|
-
readonly useEyeDropper: UnwrapRef<typeof import('./core/utils/src/vendors')['useEyeDropper']>
|
|
1580
|
-
readonly useFavicon: UnwrapRef<typeof import('./core/utils/src/vendors')['useFavicon']>
|
|
1581
|
-
readonly useFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['useFetch']>
|
|
1582
|
-
readonly useFileDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileDialog']>
|
|
1583
|
-
readonly useFileSystemAccess: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileSystemAccess']>
|
|
1584
|
-
readonly useFloor: UnwrapRef<typeof import('./core/utils/src/math')['useFloor']>
|
|
1585
|
-
readonly useFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocus']>
|
|
1586
|
-
readonly useFocusWithin: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocusWithin']>
|
|
1587
|
-
readonly useFps: UnwrapRef<typeof import('./core/utils/src/vendors')['useFps']>
|
|
1588
|
-
readonly useFullscreen: UnwrapRef<typeof import('./core/utils/src/vendors')['useFullscreen']>
|
|
1589
|
-
readonly useGamepad: UnwrapRef<typeof import('./core/utils/src/vendors')['useGamepad']>
|
|
1590
|
-
readonly useGeolocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useGeolocation']>
|
|
1591
|
-
readonly useIdle: UnwrapRef<typeof import('./core/utils/src/vendors')['useIdle']>
|
|
1592
|
-
readonly useImage: UnwrapRef<typeof import('./core/utils/src/vendors')['useImage']>
|
|
1593
|
-
readonly useInfiniteScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useInfiniteScroll']>
|
|
1594
|
-
readonly useIntersectionObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useIntersectionObserver']>
|
|
1595
|
-
readonly useKeyModifier: UnwrapRef<typeof import('./core/utils/src/vendors')['useKeyModifier']>
|
|
1596
|
-
readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
|
|
1597
|
-
readonly useLocalStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useLocalStorage']>
|
|
1598
|
-
readonly useMagicKeys: UnwrapRef<typeof import('./core/utils/src/vendors')['useMagicKeys']>
|
|
1599
|
-
readonly useManualRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useManualRefHistory']>
|
|
1600
|
-
readonly useMath: UnwrapRef<typeof import('./core/utils/src/math')['useMath']>
|
|
1601
|
-
readonly useMax: UnwrapRef<typeof import('./core/utils/src/math')['useMax']>
|
|
1602
|
-
readonly useMediaControls: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaControls']>
|
|
1603
|
-
readonly useMediaQuery: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaQuery']>
|
|
1604
|
-
readonly useMemoize: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemoize']>
|
|
1605
|
-
readonly useMemory: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemory']>
|
|
1606
|
-
readonly useMin: UnwrapRef<typeof import('./core/utils/src/math')['useMin']>
|
|
1607
|
-
readonly useMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['useMounted']>
|
|
1608
|
-
readonly useMouse: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouse']>
|
|
1609
|
-
readonly useMouseInElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouseInElement']>
|
|
1610
|
-
readonly useMousePressed: UnwrapRef<typeof import('./core/utils/src/vendors')['useMousePressed']>
|
|
1611
|
-
readonly useMutationObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useMutationObserver']>
|
|
1612
|
-
readonly useNavigatorLanguage: UnwrapRef<typeof import('./core/utils/src/vendors')['useNavigatorLanguage']>
|
|
1613
|
-
readonly useNetwork: UnwrapRef<typeof import('./core/utils/src/vendors')['useNetwork']>
|
|
1614
|
-
readonly useNotification: UnwrapRef<typeof import('./core/notifications/src/index')['useNotification']>
|
|
1615
|
-
readonly useNow: UnwrapRef<typeof import('./core/utils/src/vendors')['useNow']>
|
|
1616
|
-
readonly useObjectUrl: UnwrapRef<typeof import('./core/utils/src/vendors')['useObjectUrl']>
|
|
1617
|
-
readonly useOffsetPagination: UnwrapRef<typeof import('./core/utils/src/vendors')['useOffsetPagination']>
|
|
1618
|
-
readonly useOnline: UnwrapRef<typeof import('./core/utils/src/vendors')['useOnline']>
|
|
1619
|
-
readonly usePageLeave: UnwrapRef<typeof import('./core/utils/src/vendors')['usePageLeave']>
|
|
1620
|
-
readonly useParallax: UnwrapRef<typeof import('./core/utils/src/vendors')['useParallax']>
|
|
1621
|
-
readonly useParentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useParentElement']>
|
|
1622
|
-
readonly usePerformanceObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['usePerformanceObserver']>
|
|
1623
|
-
readonly usePermission: UnwrapRef<typeof import('./core/utils/src/vendors')['usePermission']>
|
|
1624
|
-
readonly usePointer: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointer']>
|
|
1625
|
-
readonly usePointerLock: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerLock']>
|
|
1626
|
-
readonly usePointerSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerSwipe']>
|
|
1627
|
-
readonly usePrecision: UnwrapRef<typeof import('./core/utils/src/math')['usePrecision']>
|
|
1628
|
-
readonly usePreferredColorScheme: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredColorScheme']>
|
|
1629
|
-
readonly usePreferredContrast: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredContrast']>
|
|
1630
|
-
readonly usePreferredDark: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredDark']>
|
|
1631
|
-
readonly usePreferredLanguages: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredLanguages']>
|
|
1632
|
-
readonly usePreferredReducedMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredReducedMotion']>
|
|
1633
|
-
readonly usePrevious: UnwrapRef<typeof import('./core/utils/src/vendors')['usePrevious']>
|
|
1634
|
-
readonly useProjection: UnwrapRef<typeof import('./core/utils/src/math')['useProjection']>
|
|
1635
|
-
readonly useRafFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useRafFn']>
|
|
1636
|
-
readonly useRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useRefHistory']>
|
|
1637
|
-
readonly useResizeObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useResizeObserver']>
|
|
1638
|
-
readonly useRound: UnwrapRef<typeof import('./core/utils/src/math')['useRound']>
|
|
1639
|
-
readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
|
|
1640
|
-
readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
|
|
1641
|
-
readonly useSMS: UnwrapRef<typeof import('./core/notifications/src/index')['useSMS']>
|
|
1642
|
-
readonly useScreenOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenOrientation']>
|
|
1643
|
-
readonly useScreenSafeArea: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenSafeArea']>
|
|
1644
|
-
readonly useScriptTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useScriptTag']>
|
|
1645
|
-
readonly useScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useScroll']>
|
|
1646
|
-
readonly useScrollLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useScrollLock']>
|
|
1647
|
-
readonly useSearchEngine: UnwrapRef<typeof import('./core/search-engine/src/index')['useSearchEngine']>
|
|
1648
|
-
readonly useSessionStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useSessionStorage']>
|
|
1649
|
-
readonly useShare: UnwrapRef<typeof import('./core/utils/src/vendors')['useShare']>
|
|
1650
|
-
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
|
1651
|
-
readonly useSorted: UnwrapRef<typeof import('./core/utils/src/vendors')['useSorted']>
|
|
1652
|
-
readonly useSpeechRecognition: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechRecognition']>
|
|
1653
|
-
readonly useSpeechSynthesis: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechSynthesis']>
|
|
1654
|
-
readonly useStepper: UnwrapRef<typeof import('./core/utils/src/vendors')['useStepper']>
|
|
1655
|
-
readonly useStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorage']>
|
|
1656
|
-
readonly useStorageAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorageAsync']>
|
|
1657
|
-
readonly useStyleTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useStyleTag']>
|
|
1658
|
-
readonly useSum: UnwrapRef<typeof import('./core/utils/src/math')['useSum']>
|
|
1659
|
-
readonly useSupported: UnwrapRef<typeof import('./core/utils/src/vendors')['useSupported']>
|
|
1660
|
-
readonly useSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['useSwipe']>
|
|
1661
|
-
readonly useTemplateRefsList: UnwrapRef<typeof import('./core/utils/src/vendors')['useTemplateRefsList']>
|
|
1662
|
-
readonly useTextDirection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextDirection']>
|
|
1663
|
-
readonly useTextSelection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextSelection']>
|
|
1664
|
-
readonly useTextareaAutosize: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextareaAutosize']>
|
|
1665
|
-
readonly useThrottledRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useThrottledRefHistory']>
|
|
1666
|
-
readonly useTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeAgo']>
|
|
1667
|
-
readonly useTimeoutPoll: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeoutPoll']>
|
|
1668
|
-
readonly useTimestamp: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimestamp']>
|
|
1669
|
-
readonly useTitle: UnwrapRef<typeof import('./core/utils/src/vendors')['useTitle']>
|
|
1670
|
-
readonly useToggle: UnwrapRef<typeof import('./core/utils/src/vendors')['useToggle']>
|
|
1671
|
-
readonly useTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['useTransition']>
|
|
1672
|
-
readonly useTrunc: UnwrapRef<typeof import('./core/utils/src/math')['useTrunc']>
|
|
1673
|
-
readonly useUrlSearchParams: UnwrapRef<typeof import('./core/utils/src/vendors')['useUrlSearchParams']>
|
|
1674
|
-
readonly useUserMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useUserMedia']>
|
|
1675
|
-
readonly useVModel: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModel']>
|
|
1676
|
-
readonly useVModels: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModels']>
|
|
1677
|
-
readonly useVibrate: UnwrapRef<typeof import('./core/utils/src/vendors')['useVibrate']>
|
|
1678
|
-
readonly useVirtualList: UnwrapRef<typeof import('./core/utils/src/vendors')['useVirtualList']>
|
|
1679
|
-
readonly useWakeLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useWakeLock']>
|
|
1680
|
-
readonly useWebNotification: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebNotification']>
|
|
1681
|
-
readonly useWebSocket: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebSocket']>
|
|
1682
|
-
readonly useWebWorker: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorker']>
|
|
1683
|
-
readonly useWebWorkerFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorkerFn']>
|
|
1684
|
-
readonly useWindowFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowFocus']>
|
|
1685
|
-
readonly useWindowScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowScroll']>
|
|
1686
|
-
readonly useWindowSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowSize']>
|
|
1687
|
-
readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
|
|
1688
|
-
readonly validate: UnwrapRef<typeof import('./core/validation/src/validate')['validate']>
|
|
1689
|
-
readonly validateUsername: UnwrapRef<typeof import('./core/validation/src/is')['validateUsername']>
|
|
1690
|
-
readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
|
|
1691
|
-
readonly validator: UnwrapRef<typeof import('./core/validation/src/validate')['validator']>
|
|
1692
|
-
readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
|
|
1693
|
-
readonly vi: UnwrapRef<typeof import('vitest')['vi']>
|
|
1694
|
-
readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
|
|
1695
|
-
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
|
1696
|
-
readonly watchArray: UnwrapRef<typeof import('./core/utils/src/vendors')['watchArray']>
|
|
1697
|
-
readonly watchAtMost: UnwrapRef<typeof import('./core/utils/src/vendors')['watchAtMost']>
|
|
1698
|
-
readonly watchDebounced: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDebounced']>
|
|
1699
|
-
readonly watchDeep: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDeep']>
|
|
1700
|
-
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
|
|
1701
|
-
readonly watchIgnorable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchIgnorable']>
|
|
1702
|
-
readonly watchImmediate: UnwrapRef<typeof import('./core/utils/src/vendors')['watchImmediate']>
|
|
1703
|
-
readonly watchOnce: UnwrapRef<typeof import('./core/utils/src/vendors')['watchOnce']>
|
|
1704
|
-
readonly watchPausable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchPausable']>
|
|
1705
|
-
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
|
|
1706
|
-
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
|
|
1707
|
-
readonly watchThrottled: UnwrapRef<typeof import('./core/utils/src/vendors')['watchThrottled']>
|
|
1708
|
-
readonly watchTriggerable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchTriggerable']>
|
|
1709
|
-
readonly watchWithFilter: UnwrapRef<typeof import('./core/utils/src/vendors')['watchWithFilter']>
|
|
1710
|
-
readonly whenever: UnwrapRef<typeof import('./core/utils/src/vendors')['whenever']>
|
|
1711
|
-
readonly white: UnwrapRef<typeof import('./core/cli/src/utilities')['white']>
|
|
1712
|
-
readonly wipRealtime: UnwrapRef<typeof import('./core/realtime/src/index')['wipRealtime']>
|
|
1713
|
-
readonly wipSlug: UnwrapRef<typeof import('./core/slug/src/index')['wipSlug']>
|
|
1714
|
-
readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
|
|
1715
|
-
readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
|
|
1716
|
-
readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
|
|
1717
|
-
readonly yellow: UnwrapRef<typeof import('./core/cli/src/utilities')['yellow']>
|
|
1718
|
-
}
|
|
1719
|
-
}
|
|
1720
|
-
declare module '@vue/runtime-core' {
|
|
1721
|
-
interface ComponentCustomProperties {
|
|
1722
|
-
readonly $$: UnwrapRef<typeof import('vue/macros')['$$']>
|
|
1723
|
-
readonly $: UnwrapRef<typeof import('vue/macros')['$']>
|
|
1724
|
-
readonly $computed: UnwrapRef<typeof import('vue/macros')['$computed']>
|
|
1725
|
-
readonly $customRef: UnwrapRef<typeof import('vue/macros')['$customRef']>
|
|
1726
|
-
readonly $ref: UnwrapRef<typeof import('vue/macros')['$ref']>
|
|
1727
|
-
readonly $shallowRef: UnwrapRef<typeof import('vue/macros')['$shallowRef']>
|
|
1728
|
-
readonly $toRef: UnwrapRef<typeof import('vue/macros')['$toRef']>
|
|
1729
|
-
readonly : UnwrapRef<typeof import('./core/orm/src/index')['']>
|
|
1730
|
-
readonly Arr: UnwrapRef<typeof import('./core/arrays/src/macro')['Arr']>
|
|
1731
|
-
readonly Collection: UnwrapRef<typeof import('./core/objects/src/index')['Collection']>
|
|
1732
|
-
readonly CssEngine: UnwrapRef<typeof import('@stacksjs/ui')['CssEngine']>
|
|
1733
|
-
readonly EffectScope: UnwrapRef<typeof import('vue')['EffectScope']>
|
|
1734
|
-
readonly Err: UnwrapRef<typeof import('./core/error-handling/src/index')['Err']>
|
|
1735
|
-
readonly ExitCode: UnwrapRef<typeof import('./core/cli/src/index')['ExitCode']>
|
|
1736
|
-
readonly Head: UnwrapRef<typeof import('./core/utils/src/vendors')['Head']>
|
|
1737
|
-
readonly HeadVuePlugin: UnwrapRef<typeof import('./core/utils/src/vendors')['HeadVuePlugin']>
|
|
1738
|
-
readonly MoneyValidator: UnwrapRef<typeof import('./core/validation/src/types/money')['MoneyValidator']>
|
|
1739
|
-
readonly MysqlDialect: UnwrapRef<typeof import('./core/query-builder/src/kysely')['MysqlDialect']>
|
|
1740
|
-
readonly Ok: UnwrapRef<typeof import('./core/error-handling/src/index')['Ok']>
|
|
1741
|
-
readonly PostgresDialect: UnwrapRef<typeof import('./core/query-builder/src/kysely')['PostgresDialect']>
|
|
1742
|
-
readonly Prompt: UnwrapRef<typeof import('./core/cli/src/console')['Prompt']>
|
|
1743
|
-
readonly QueryBuilder: UnwrapRef<typeof import('./core/query-builder/src/kysely')['QueryBuilder']>
|
|
1744
|
-
readonly Result: UnwrapRef<typeof import('./core/error-handling/src/index')['Result']>
|
|
1745
|
-
readonly ResultAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['ResultAsync']>
|
|
1746
|
-
readonly Router: UnwrapRef<typeof import('./core/router/src/index')['Router']>
|
|
1747
|
-
readonly Store: UnwrapRef<typeof import('@stacksjs/ui')['Store']>
|
|
1748
|
-
readonly Str: UnwrapRef<typeof import('./core/strings/src/macro')['Str']>
|
|
1749
|
-
readonly USD: UnwrapRef<typeof import('./core/utils/src/currency')['USD']>
|
|
1750
|
-
readonly UiEngine: UnwrapRef<typeof import('@stacksjs/ui')['UiEngine']>
|
|
1751
|
-
readonly Validator: UnwrapRef<typeof import('./core/validation/src/validate')['Validator']>
|
|
1752
|
-
readonly _dirname: UnwrapRef<typeof import('./core/storage/src/index')['_dirname']>
|
|
1753
|
-
readonly actionsPath: UnwrapRef<typeof import('./core/path/src/index')['actionsPath']>
|
|
1754
|
-
readonly add: UnwrapRef<typeof import('./core/utils/src/currency')['add']>
|
|
1755
|
-
readonly addIrregularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addIrregularRule']>
|
|
1756
|
-
readonly addPluralRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addPluralRule']>
|
|
1757
|
-
readonly addSingularRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addSingularRule']>
|
|
1758
|
-
readonly addUncountableRule: UnwrapRef<typeof import('./core/strings/src/pluralize')['addUncountableRule']>
|
|
1759
|
-
readonly afterAll: UnwrapRef<typeof import('vitest')['afterAll']>
|
|
1760
|
-
readonly afterEach: UnwrapRef<typeof import('vitest')['afterEach']>
|
|
1761
|
-
readonly aiPath: UnwrapRef<typeof import('./core/path/src/index')['aiPath']>
|
|
1762
|
-
readonly aliasPath: UnwrapRef<typeof import('./core/path/src/index')['aliasPath']>
|
|
1763
|
-
readonly all: UnwrapRef<typeof import('./core/events/src/index')['all']>
|
|
1764
|
-
readonly allocate: UnwrapRef<typeof import('./core/utils/src/currency')['allocate']>
|
|
1765
|
-
readonly and: UnwrapRef<typeof import('./core/utils/src/math')['and']>
|
|
1766
|
-
readonly ansi256Bg: UnwrapRef<typeof import('./core/cli/src/utilities')['ansi256Bg']>
|
|
1767
|
-
readonly any: UnwrapRef<typeof import('./core/validation/src/validate')['any']>
|
|
1768
|
-
readonly app: UnwrapRef<typeof import('../config/app')['default']>
|
|
1769
|
-
readonly appPath: UnwrapRef<typeof import('./core/path/src/index')['appPath']>
|
|
1770
|
-
readonly arr: UnwrapRef<typeof import('./core/arrays/src/macro')['arr']>
|
|
1771
|
-
readonly array: UnwrapRef<typeof import('./core/validation/src/validate')['array']>
|
|
1772
|
-
readonly arraysPath: UnwrapRef<typeof import('./core/path/src/index')['arraysPath']>
|
|
1773
|
-
readonly assert: UnwrapRef<typeof import('vitest')['assert']>
|
|
1774
|
-
readonly asyncComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['asyncComputed']>
|
|
1775
|
-
readonly at: UnwrapRef<typeof import('./core/arrays/src/helpers')['at']>
|
|
1776
|
-
readonly auth: UnwrapRef<typeof import('./core/auth/src/index')['auth']>
|
|
1777
|
-
readonly authPath: UnwrapRef<typeof import('./core/path/src/index')['authPath']>
|
|
1778
|
-
readonly autoResetRef: UnwrapRef<typeof import('./core/utils/src/vendors')['autoResetRef']>
|
|
1779
|
-
readonly average: UnwrapRef<typeof import('./core/arrays/src/math')['average']>
|
|
1780
|
-
readonly avg: UnwrapRef<typeof import('./core/arrays/src/math')['avg']>
|
|
1781
|
-
readonly base64Encode: UnwrapRef<typeof import('./core/security/src/hash')['base64Encode']>
|
|
1782
|
-
readonly base64Verify: UnwrapRef<typeof import('./core/security/src/hash')['base64Verify']>
|
|
1783
|
-
readonly basename: UnwrapRef<typeof import('./core/path/src/index')['basename']>
|
|
1784
|
-
readonly batchInvoke: UnwrapRef<typeof import('./core/utils/src/function')['batchInvoke']>
|
|
1785
|
-
readonly bcryptEncode: UnwrapRef<typeof import('./core/security/src/hash')['bcryptEncode']>
|
|
1786
|
-
readonly bcryptVerify: UnwrapRef<typeof import('./core/security/src/hash')['bcryptVerify']>
|
|
1787
|
-
readonly beforeAll: UnwrapRef<typeof import('vitest')['beforeAll']>
|
|
1788
|
-
readonly beforeEach: UnwrapRef<typeof import('vitest')['beforeEach']>
|
|
1789
|
-
readonly bgBlack: UnwrapRef<typeof import('./core/cli/src/utilities')['bgBlack']>
|
|
1790
|
-
readonly bgBlue: UnwrapRef<typeof import('./core/cli/src/utilities')['bgBlue']>
|
|
1791
|
-
readonly bgCyan: UnwrapRef<typeof import('./core/cli/src/utilities')['bgCyan']>
|
|
1792
|
-
readonly bgGray: UnwrapRef<typeof import('./core/cli/src/utilities')['bgGray']>
|
|
1793
|
-
readonly bgGreen: UnwrapRef<typeof import('./core/cli/src/utilities')['bgGreen']>
|
|
1794
|
-
readonly bgLightBlue: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightBlue']>
|
|
1795
|
-
readonly bgLightCyan: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightCyan']>
|
|
1796
|
-
readonly bgLightGray: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightGray']>
|
|
1797
|
-
readonly bgLightGreen: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightGreen']>
|
|
1798
|
-
readonly bgLightMagenta: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightMagenta']>
|
|
1799
|
-
readonly bgLightRed: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightRed']>
|
|
1800
|
-
readonly bgLightYellow: UnwrapRef<typeof import('./core/cli/src/utilities')['bgLightYellow']>
|
|
1801
|
-
readonly bgMagenta: UnwrapRef<typeof import('./core/cli/src/utilities')['bgMagenta']>
|
|
1802
|
-
readonly bgRed: UnwrapRef<typeof import('./core/cli/src/utilities')['bgRed']>
|
|
1803
|
-
readonly bgWhite: UnwrapRef<typeof import('./core/cli/src/utilities')['bgWhite']>
|
|
1804
|
-
readonly bgYellow: UnwrapRef<typeof import('./core/cli/src/utilities')['bgYellow']>
|
|
1805
|
-
readonly black: UnwrapRef<typeof import('./core/cli/src/utilities')['black']>
|
|
1806
|
-
readonly blue: UnwrapRef<typeof import('./core/cli/src/utilities')['blue']>
|
|
1807
|
-
readonly bold: UnwrapRef<typeof import('./core/cli/src/utilities')['bold']>
|
|
1808
|
-
readonly boolean: UnwrapRef<typeof import('./core/validation/src/validate')['boolean']>
|
|
1809
|
-
readonly breakpointsAntDesign: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsAntDesign']>
|
|
1810
|
-
readonly breakpointsBootstrapV5: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsBootstrapV5']>
|
|
1811
|
-
readonly breakpointsMasterCss: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsMasterCss']>
|
|
1812
|
-
readonly breakpointsQuasar: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsQuasar']>
|
|
1813
|
-
readonly breakpointsSematic: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsSematic']>
|
|
1814
|
-
readonly breakpointsTailwind: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsTailwind']>
|
|
1815
|
-
readonly breakpointsVuetify: UnwrapRef<typeof import('./core/utils/src/vendors')['breakpointsVuetify']>
|
|
1816
|
-
readonly buildEnginePath: UnwrapRef<typeof import('./core/path/src/index')['buildEnginePath']>
|
|
1817
|
-
readonly buildPath: UnwrapRef<typeof import('./core/path/src/index')['buildPath']>
|
|
1818
|
-
readonly cache: UnwrapRef<typeof import('../config/cache')['default']>
|
|
1819
|
-
readonly cachePath: UnwrapRef<typeof import('./core/path/src/index')['cachePath']>
|
|
1820
|
-
readonly calculatePagination: UnwrapRef<typeof import('./core/search-engine/src/index')['calculatePagination']>
|
|
1821
|
-
readonly camelCase: UnwrapRef<typeof import('./core/strings/src/case')['camelCase']>
|
|
1822
|
-
readonly capitalCase: UnwrapRef<typeof import('./core/strings/src/case')['capitalCase']>
|
|
1823
|
-
readonly capitalize: UnwrapRef<typeof import('./core/strings/src/case')['capitalize']>
|
|
1824
|
-
readonly cdn: UnwrapRef<typeof import('../config/cdn')['default']>
|
|
1825
|
-
readonly chai: UnwrapRef<typeof import('vitest')['chai']>
|
|
1826
|
-
readonly chatPath: UnwrapRef<typeof import('./core/path/src/index')['chatPath']>
|
|
1827
|
-
readonly clamp: UnwrapRef<typeof import('./core/utils/src/math')['clamp']>
|
|
1828
|
-
readonly clampArrayRange: UnwrapRef<typeof import('./core/arrays/src/helpers')['clampArrayRange']>
|
|
1829
|
-
readonly clearUndefined: UnwrapRef<typeof import('./core/objects/src/index')['clearUndefined']>
|
|
1830
|
-
readonly cli: UnwrapRef<typeof import('../config/cli')['default']>
|
|
1831
|
-
readonly cliPath: UnwrapRef<typeof import('./core/path/src/index')['cliPath']>
|
|
1832
|
-
readonly client: UnwrapRef<typeof import('./core/search-engine/src/index')['client']>
|
|
1833
|
-
readonly cloneFnJSON: UnwrapRef<typeof import('./core/utils/src/vendors')['cloneFnJSON']>
|
|
1834
|
-
readonly cloudPath: UnwrapRef<typeof import('./core/path/src/index')['cloudPath']>
|
|
1835
|
-
readonly collect: UnwrapRef<typeof import('./core/objects/src/index')['collect']>
|
|
1836
|
-
readonly collectionsPath: UnwrapRef<typeof import('./core/path/src/index')['collectionsPath']>
|
|
1837
|
-
readonly command: UnwrapRef<typeof import('./core/cli/src/command')['command']>
|
|
1838
|
-
readonly compare: UnwrapRef<typeof import('./core/utils/src/currency')['compare']>
|
|
1839
|
-
readonly componentsPath: UnwrapRef<typeof import('./core/path/src/index')['componentsPath']>
|
|
1840
|
-
readonly computed: UnwrapRef<typeof import('vue')['computed']>
|
|
1841
|
-
readonly computedAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['computedAsync']>
|
|
1842
|
-
readonly computedEager: UnwrapRef<typeof import('./core/utils/src/vendors')['computedEager']>
|
|
1843
|
-
readonly computedInject: UnwrapRef<typeof import('./core/utils/src/vendors')['computedInject']>
|
|
1844
|
-
readonly computedSignal: UnwrapRef<typeof import('./core/signals/src/index')['computedSignal']>
|
|
1845
|
-
readonly computedWithControl: UnwrapRef<typeof import('./core/utils/src/vendors')['computedWithControl']>
|
|
1846
|
-
readonly config: UnwrapRef<typeof import('./core/utils/src/config')['config']>
|
|
1847
|
-
readonly configPath: UnwrapRef<typeof import('./core/path/src/index')['configPath']>
|
|
1848
|
-
readonly constantCase: UnwrapRef<typeof import('./core/strings/src/case')['constantCase']>
|
|
1849
|
-
readonly contains: UnwrapRef<typeof import('./core/arrays/src/contains')['contains']>
|
|
1850
|
-
readonly containsAll: UnwrapRef<typeof import('./core/arrays/src/contains')['containsAll']>
|
|
1851
|
-
readonly containsAny: UnwrapRef<typeof import('./core/arrays/src/contains')['containsAny']>
|
|
1852
|
-
readonly containsNone: UnwrapRef<typeof import('./core/arrays/src/contains')['containsNone']>
|
|
1853
|
-
readonly containsOnly: UnwrapRef<typeof import('./core/arrays/src/contains')['containsOnly']>
|
|
1854
|
-
readonly controlledComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledComputed']>
|
|
1855
|
-
readonly controlledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['controlledRef']>
|
|
1856
|
-
readonly convert: UnwrapRef<typeof import('./core/utils/src/currency')['convert']>
|
|
1857
|
-
readonly copyFolder: UnwrapRef<typeof import('./core/storage/src/index')['copyFolder']>
|
|
1858
|
-
readonly corePath: UnwrapRef<typeof import('./core/path/src/index')['corePath']>
|
|
1859
|
-
readonly count: UnwrapRef<typeof import('../resources/functions/counter')['count']>
|
|
1860
|
-
readonly createApp: UnwrapRef<typeof import('vue')['createApp']>
|
|
1861
|
-
readonly createControlledPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createControlledPromise']>
|
|
1862
|
-
readonly createEventHook: UnwrapRef<typeof import('./core/utils/src/vendors')['createEventHook']>
|
|
1863
|
-
readonly createFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['createFetch']>
|
|
1864
|
-
readonly createFolder: UnwrapRef<typeof import('./core/storage/src/index')['createFolder']>
|
|
1865
|
-
readonly createGenericProjection: UnwrapRef<typeof import('./core/utils/src/math')['createGenericProjection']>
|
|
1866
|
-
readonly createGlobalState: UnwrapRef<typeof import('./core/utils/src/vendors')['createGlobalState']>
|
|
1867
|
-
readonly createHead: UnwrapRef<typeof import('./core/utils/src/vendors')['createHead']>
|
|
1868
|
-
readonly createInjectionState: UnwrapRef<typeof import('./core/utils/src/vendors')['createInjectionState']>
|
|
1869
|
-
readonly createMysqlPool: UnwrapRef<typeof import('./core/query-builder/src/kysely')['createMysqlPool']>
|
|
1870
|
-
readonly createProjection: UnwrapRef<typeof import('./core/utils/src/math')['createProjection']>
|
|
1871
|
-
readonly createPromiseLock: UnwrapRef<typeof import('./core/utils/src/promise')['createPromiseLock']>
|
|
1872
|
-
readonly createReactiveFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createReactiveFn']>
|
|
1873
|
-
readonly createReusableTemplate: UnwrapRef<typeof import('./core/utils/src/vendors')['createReusableTemplate']>
|
|
1874
|
-
readonly createSharedComposable: UnwrapRef<typeof import('./core/utils/src/vendors')['createSharedComposable']>
|
|
1875
|
-
readonly createSingletonPromise: UnwrapRef<typeof import('./core/utils/src/promise')['createSingletonPromise']>
|
|
1876
|
-
readonly createTemplatePromise: UnwrapRef<typeof import('./core/utils/src/vendors')['createTemplatePromise']>
|
|
1877
|
-
readonly createUnrefFn: UnwrapRef<typeof import('./core/utils/src/vendors')['createUnrefFn']>
|
|
1878
|
-
readonly currency: UnwrapRef<typeof import('./core/utils/src/currency')['currency']>
|
|
1879
|
-
readonly currentPage: UnwrapRef<typeof import('./core/search-engine/src/index')['currentPage']>
|
|
1880
|
-
readonly customElementsDataPath: UnwrapRef<typeof import('./core/path/src/index')['customElementsDataPath']>
|
|
1881
|
-
readonly customRef: UnwrapRef<typeof import('vue')['customRef']>
|
|
1882
|
-
readonly customStorageEventName: UnwrapRef<typeof import('./core/utils/src/vendors')['customStorageEventName']>
|
|
1883
|
-
readonly cyan: UnwrapRef<typeof import('./core/cli/src/utilities')['cyan']>
|
|
1884
|
-
readonly dashboardPath: UnwrapRef<typeof import('./core/path/src/index')['dashboardPath']>
|
|
1885
|
-
readonly database: UnwrapRef<typeof import('../config/database')['default']>
|
|
1886
|
-
readonly databasePath: UnwrapRef<typeof import('./core/path/src/index')['databasePath']>
|
|
1887
|
-
readonly dateFormat: UnwrapRef<typeof import('./core/datetime/src/index')['dateFormat']>
|
|
1888
|
-
readonly datetimePath: UnwrapRef<typeof import('./core/path/src/index')['datetimePath']>
|
|
1889
|
-
readonly dd: UnwrapRef<typeof import('@stacksjs/logging')['dd']>
|
|
1890
|
-
readonly debounce: UnwrapRef<typeof import('./core/utils/src/debounce')['debounce']>
|
|
1891
|
-
readonly debouncedRef: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedRef']>
|
|
1892
|
-
readonly debouncedWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['debouncedWatch']>
|
|
1893
|
-
readonly debug: UnwrapRef<typeof import('../config/debug')['default']>
|
|
1894
|
-
readonly decrypt: UnwrapRef<typeof import('./core/security/src/crypt')['decrypt']>
|
|
1895
|
-
readonly deepMerge: UnwrapRef<typeof import('./core/objects/src/index')['deepMerge']>
|
|
1896
|
-
readonly defaultDocument: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultDocument']>
|
|
1897
|
-
readonly defaultLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultLocation']>
|
|
1898
|
-
readonly defaultNavigator: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultNavigator']>
|
|
1899
|
-
readonly defaultWindow: UnwrapRef<typeof import('./core/utils/src/vendors')['defaultWindow']>
|
|
1900
|
-
readonly defineApp: UnwrapRef<typeof import('./core/utils/src/config')['defineApp']>
|
|
1901
|
-
readonly defineAsyncComponent: UnwrapRef<typeof import('vue')['defineAsyncComponent']>
|
|
1902
|
-
readonly defineCache: UnwrapRef<typeof import('./core/utils/src/config')['defineCache']>
|
|
1903
|
-
readonly defineCdn: UnwrapRef<typeof import('./core/utils/src/config')['defineCdn']>
|
|
1904
|
-
readonly defineCli: UnwrapRef<typeof import('./core/utils/src/config')['defineCli']>
|
|
1905
|
-
readonly defineComponent: UnwrapRef<typeof import('vue')['defineComponent']>
|
|
1906
|
-
readonly defineCronJobsConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineCronJobsConfig']>
|
|
1907
|
-
readonly defineDatabase: UnwrapRef<typeof import('./core/utils/src/config')['defineDatabase']>
|
|
1908
|
-
readonly defineDebugConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineDebugConfig']>
|
|
1909
|
-
readonly defineDns: UnwrapRef<typeof import('./core/utils/src/config')['defineDns']>
|
|
1910
|
-
readonly defineEmailConfig: UnwrapRef<typeof import('./core/utils/src/config')['defineEmailConfig']>
|
|
1911
|
-
readonly defineEvents: UnwrapRef<typeof import('./core/utils/src/config')['defineEvents']>
|
|
1912
|
-
readonly defineGit: UnwrapRef<typeof import('./core/utils/src/config')['defineGit']>
|
|
1913
|
-
readonly defineHashing: UnwrapRef<typeof import('./core/utils/src/config')['defineHashing']>
|
|
1914
|
-
readonly defineLibrary: UnwrapRef<typeof import('./core/utils/src/config')['defineLibrary']>
|
|
1915
|
-
readonly defineModel: UnwrapRef<typeof import('./core/utils/src/config')['defineModel']>
|
|
1916
|
-
readonly defineNotification: UnwrapRef<typeof import('./core/utils/src/config')['defineNotification']>
|
|
1917
|
-
readonly definePage: UnwrapRef<typeof import('./core/utils/src/config')['definePage']>
|
|
1918
|
-
readonly definePayment: UnwrapRef<typeof import('./core/utils/src/config')['definePayment']>
|
|
1919
|
-
readonly defineSearchEngine: UnwrapRef<typeof import('./core/utils/src/config')['defineSearchEngine']>
|
|
1920
|
-
readonly defineServices: UnwrapRef<typeof import('./core/utils/src/config')['defineServices']>
|
|
1921
|
-
readonly defineStorage: UnwrapRef<typeof import('./core/utils/src/config')['defineStorage']>
|
|
1922
|
-
readonly defineUi: UnwrapRef<typeof import('./core/utils/src/config')['defineUi']>
|
|
1923
|
-
readonly del: UnwrapRef<typeof import('./core/utils/src/delete')['del']>
|
|
1924
|
-
readonly deleteEmptyFolders: UnwrapRef<typeof import('./core/storage/src/index')['deleteEmptyFolders']>
|
|
1925
|
-
readonly deleteFiles: UnwrapRef<typeof import('./core/storage/src/index')['deleteFiles']>
|
|
1926
|
-
readonly deleteFolder: UnwrapRef<typeof import('./core/storage/src/index')['deleteFolder']>
|
|
1927
|
-
readonly delimiter: UnwrapRef<typeof import('./core/path/src/index')['delimiter']>
|
|
1928
|
-
readonly describe: UnwrapRef<typeof import('vitest')['describe']>
|
|
1929
|
-
readonly desktopPath: UnwrapRef<typeof import('./core/path/src/index')['desktopPath']>
|
|
1930
|
-
readonly detectIndent: UnwrapRef<typeof import('./core/strings/src/utils')['detectIndent']>
|
|
1931
|
-
readonly detectNewline: UnwrapRef<typeof import('./core/strings/src/utils')['detectNewline']>
|
|
1932
|
-
readonly determineDebugLevel: UnwrapRef<typeof import('./core/utils/src/helpers')['determineDebugLevel']>
|
|
1933
|
-
readonly determineResetPreset: UnwrapRef<typeof import('./core/utils/src/helpers')['determineResetPreset']>
|
|
1934
|
-
readonly determineState: UnwrapRef<typeof import('./core/search-engine/src/helpers')['determineState']>
|
|
1935
|
-
readonly developmentPath: UnwrapRef<typeof import('./core/path/src/index')['developmentPath']>
|
|
1936
|
-
readonly dim: UnwrapRef<typeof import('./core/cli/src/utilities')['dim']>
|
|
1937
|
-
readonly dinero: UnwrapRef<typeof import('./core/utils/src/currency')['dinero']>
|
|
1938
|
-
readonly dirname: UnwrapRef<typeof import('./core/path/src/index')['dirname']>
|
|
1939
|
-
readonly discord: UnwrapRef<typeof import('./core/chat/src/index')['discord']>
|
|
1940
|
-
readonly dispatch: UnwrapRef<typeof import('./core/events/src/index')['dispatch']>
|
|
1941
|
-
readonly dns: UnwrapRef<typeof import('../config/dns')['default']>
|
|
1942
|
-
readonly dnsPath: UnwrapRef<typeof import('./core/path/src/index')['dnsPath']>
|
|
1943
|
-
readonly docs: UnwrapRef<typeof import('../config/docs')['default']>
|
|
1944
|
-
readonly docsPath: UnwrapRef<typeof import('./core/path/src/index')['docsPath']>
|
|
1945
|
-
readonly doesFolderExist: UnwrapRef<typeof import('./core/storage/src/index')['doesFolderExist']>
|
|
1946
|
-
readonly doesNotContain: UnwrapRef<typeof import('./core/arrays/src/contains')['doesNotContain']>
|
|
1947
|
-
readonly dotCase: UnwrapRef<typeof import('./core/strings/src/case')['dotCase']>
|
|
1948
|
-
readonly dump: UnwrapRef<typeof import('@stacksjs/logging')['dump']>
|
|
1949
|
-
readonly dynamodb: UnwrapRef<typeof import('./core/cache/src/index')['dynamodb']>
|
|
1950
|
-
readonly eagerComputed: UnwrapRef<typeof import('./core/utils/src/vendors')['eagerComputed']>
|
|
1951
|
-
readonly effect: UnwrapRef<typeof import('./core/signals/src/index')['effect']>
|
|
1952
|
-
readonly effectScope: UnwrapRef<typeof import('vue')['effectScope']>
|
|
1953
|
-
readonly email: UnwrapRef<typeof import('./core/validation/src/validate')['email']>
|
|
1954
|
-
readonly emailPath: UnwrapRef<typeof import('./core/path/src/index')['emailPath']>
|
|
1955
|
-
readonly encrypt: UnwrapRef<typeof import('./core/security/src/crypt')['encrypt']>
|
|
1956
|
-
readonly ensurePrefix: UnwrapRef<typeof import('./core/strings/src/utils')['ensurePrefix']>
|
|
1957
|
-
readonly ensureSuffix: UnwrapRef<typeof import('./core/strings/src/utils')['ensureSuffix']>
|
|
1958
|
-
readonly env: UnwrapRef<typeof import('./core/validation/src/types/env')['env']>
|
|
1959
|
-
readonly envSchema: UnwrapRef<typeof import('./core/validation/src/types/env')['envSchema']>
|
|
1960
|
-
readonly equal: UnwrapRef<typeof import('./core/utils/src/currency')['equal']>
|
|
1961
|
-
readonly err: UnwrapRef<typeof import('./core/error-handling/src/index')['err']>
|
|
1962
|
-
readonly errAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['errAsync']>
|
|
1963
|
-
readonly errorHandlingPath: UnwrapRef<typeof import('./core/path/src/index')['errorHandlingPath']>
|
|
1964
|
-
readonly eslint: UnwrapRef<typeof import('./core/lint/src/index')['eslint']>
|
|
1965
|
-
readonly events: UnwrapRef<typeof import('./core/events/src/index')['events']>
|
|
1966
|
-
readonly eventsPath: UnwrapRef<typeof import('./core/path/src/index')['eventsPath']>
|
|
1967
|
-
readonly examplesPath: UnwrapRef<typeof import('./core/path/src/index')['examplesPath']>
|
|
1968
|
-
readonly exec: UnwrapRef<typeof import('./core/cli/src/run')['exec']>
|
|
1969
|
-
readonly execSync: UnwrapRef<typeof import('./core/cli/src/run')['execSync']>
|
|
1970
|
-
readonly executeTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['executeTransition']>
|
|
1971
|
-
readonly expect: UnwrapRef<typeof import('vitest')['expect']>
|
|
1972
|
-
readonly expo: UnwrapRef<typeof import('./core/push/src/index')['expo']>
|
|
1973
|
-
readonly extendRef: UnwrapRef<typeof import('./core/utils/src/vendors')['extendRef']>
|
|
1974
|
-
readonly extname: UnwrapRef<typeof import('./core/path/src/index')['extname']>
|
|
1975
|
-
readonly faker: UnwrapRef<typeof import('./core/faker/src/index')['faker']>
|
|
1976
|
-
readonly fakerPath: UnwrapRef<typeof import('./core/path/src/index')['fakerPath']>
|
|
1977
|
-
readonly fcm: UnwrapRef<typeof import('./core/push/src/index')['fcm']>
|
|
1978
|
-
readonly feature: UnwrapRef<typeof import('./core/testing/src/index')['feature']>
|
|
1979
|
-
readonly filterName: UnwrapRef<typeof import('./core/search-engine/src/index')['filterName']>
|
|
1980
|
-
readonly filters: UnwrapRef<typeof import('./core/search-engine/src/index')['filters']>
|
|
1981
|
-
readonly flatten: UnwrapRef<typeof import('./core/arrays/src/helpers')['flatten']>
|
|
1982
|
-
readonly format: UnwrapRef<typeof import('./core/path/src/index')['format']>
|
|
1983
|
-
readonly formatTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['formatTimeAgo']>
|
|
1984
|
-
readonly frameworkPath: UnwrapRef<typeof import('./core/path/src/index')['frameworkPath']>
|
|
1985
|
-
readonly frameworkVersion: UnwrapRef<typeof import('./core/utils/src/helpers')['frameworkVersion']>
|
|
1986
|
-
readonly fromPromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromPromise']>
|
|
1987
|
-
readonly fromSafePromise: UnwrapRef<typeof import('./core/error-handling/src/index')['fromSafePromise']>
|
|
1988
|
-
readonly fromThrowable: UnwrapRef<typeof import('./core/error-handling/src/index')['fromThrowable']>
|
|
1989
|
-
readonly frontendEnvSchema: UnwrapRef<typeof import('./core/validation/src/types/env')['frontendEnvSchema']>
|
|
1990
|
-
readonly fs: UnwrapRef<typeof import('./core/storage/src/index')['fs']>
|
|
1991
|
-
readonly functionsPath: UnwrapRef<typeof import('./core/path/src/index')['functionsPath']>
|
|
1992
|
-
readonly generateAppKey: UnwrapRef<typeof import('./core/security/src/key')['generateAppKey']>
|
|
1993
|
-
readonly generateFactoryFile: UnwrapRef<typeof import('./core/database/src/factory/index')['generateFactoryFile']>
|
|
1994
|
-
readonly getCurrentInstance: UnwrapRef<typeof import('vue')['getCurrentInstance']>
|
|
1995
|
-
readonly getCurrentScope: UnwrapRef<typeof import('vue')['getCurrentScope']>
|
|
1996
|
-
readonly getEnv: UnwrapRef<typeof import('./core/validation/src/types/env')['getEnv']>
|
|
1997
|
-
readonly getSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['getSSRHandler']>
|
|
1998
|
-
readonly getTypeName: UnwrapRef<typeof import('./core/utils/src/base')['getTypeName']>
|
|
1999
|
-
readonly git: UnwrapRef<typeof import('../config/git')['default']>
|
|
2000
|
-
readonly gitPath: UnwrapRef<typeof import('./core/path/src/index')['gitPath']>
|
|
2001
|
-
readonly goToNextPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToNextPage']>
|
|
2002
|
-
readonly goToPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPage']>
|
|
2003
|
-
readonly goToPrevPage: UnwrapRef<typeof import('./core/search-engine/src/index')['goToPrevPage']>
|
|
2004
|
-
readonly gray: UnwrapRef<typeof import('./core/cli/src/utilities')['gray']>
|
|
2005
|
-
readonly greaterThan: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThan']>
|
|
2006
|
-
readonly greaterThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['greaterThanOrEqual']>
|
|
2007
|
-
readonly green: UnwrapRef<typeof import('./core/cli/src/utilities')['green']>
|
|
2008
|
-
readonly gupshup: UnwrapRef<typeof import('./core/sms/src/index')['gupshup']>
|
|
2009
|
-
readonly h: UnwrapRef<typeof import('vue')['h']>
|
|
2010
|
-
readonly handleError: UnwrapRef<typeof import('./core/error-handling/src/index')['handleError']>
|
|
2011
|
-
readonly hasComponents: UnwrapRef<typeof import('./core/storage/src/index')['hasComponents']>
|
|
2012
|
-
readonly hasFiles: UnwrapRef<typeof import('./core/storage/src/index')['hasFiles']>
|
|
2013
|
-
readonly hasFunctions: UnwrapRef<typeof import('./core/storage/src/index')['hasFunctions']>
|
|
2014
|
-
readonly hasOwnProperty: UnwrapRef<typeof import('./core/objects/src/index')['hasOwnProperty']>
|
|
2015
|
-
readonly hasScript: UnwrapRef<typeof import('./core/utils/src/helpers')['hasScript']>
|
|
2016
|
-
readonly hasSubUnits: UnwrapRef<typeof import('./core/utils/src/currency')['hasSubUnits']>
|
|
2017
|
-
readonly hashing: UnwrapRef<typeof import('../config/hashing')['default']>
|
|
2018
|
-
readonly haveSameAmount: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameAmount']>
|
|
2019
|
-
readonly haveSameCurrency: UnwrapRef<typeof import('./core/utils/src/currency')['haveSameCurrency']>
|
|
2020
|
-
readonly headerCase: UnwrapRef<typeof import('./core/strings/src/case')['headerCase']>
|
|
2021
|
-
readonly healthPath: UnwrapRef<typeof import('./core/path/src/index')['healthPath']>
|
|
2022
|
-
readonly hidden: UnwrapRef<typeof import('./core/cli/src/utilities')['hidden']>
|
|
2023
|
-
readonly hits: UnwrapRef<typeof import('./core/search-engine/src/index')['hits']>
|
|
2024
|
-
readonly ignorableWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['ignorableWatch']>
|
|
2025
|
-
readonly increment: UnwrapRef<typeof import('../resources/functions/counter')['increment']>
|
|
2026
|
-
readonly index: UnwrapRef<typeof import('./core/search-engine/src/index')['index']>
|
|
2027
|
-
readonly inject: UnwrapRef<typeof import('vue')['inject']>
|
|
2028
|
-
readonly installIfVersionMismatch: UnwrapRef<typeof import('./core/utils/src/helpers')['installIfVersionMismatch']>
|
|
2029
|
-
readonly installPackage: UnwrapRef<typeof import('./core/cli/src/actions/install')['installPackage']>
|
|
2030
|
-
readonly installStack: UnwrapRef<typeof import('./core/cli/src/actions/install')['installStack']>
|
|
2031
|
-
readonly intro: UnwrapRef<typeof import('./core/cli/src/helpers')['intro']>
|
|
2032
|
-
readonly inverse: UnwrapRef<typeof import('./core/cli/src/utilities')['inverse']>
|
|
2033
|
-
readonly isAbsolute: UnwrapRef<typeof import('./core/path/src/index')['isAbsolute']>
|
|
2034
|
-
readonly isAlpha: UnwrapRef<typeof import('./core/validation/src/is')['isAlpha']>
|
|
2035
|
-
readonly isAlphanumeric: UnwrapRef<typeof import('./core/validation/src/is')['isAlphanumeric']>
|
|
2036
|
-
readonly isAppKeySet: UnwrapRef<typeof import('./core/utils/src/helpers')['isAppKeySet']>
|
|
2037
|
-
readonly isArray: UnwrapRef<typeof import('./core/validation/src/is')['isArray']>
|
|
2038
|
-
readonly isAscii: UnwrapRef<typeof import('./core/validation/src/is')['isAscii']>
|
|
2039
|
-
readonly isBase32: UnwrapRef<typeof import('./core/validation/src/is')['isBase32']>
|
|
2040
|
-
readonly isBase64: UnwrapRef<typeof import('./core/validation/src/is')['isBase64']>
|
|
2041
|
-
readonly isBoolean: UnwrapRef<typeof import('./core/validation/src/is')['isBoolean']>
|
|
2042
|
-
readonly isBrowser: UnwrapRef<typeof import('./core/validation/src/is')['isBrowser']>
|
|
2043
|
-
readonly isByteLength: UnwrapRef<typeof import('./core/validation/src/is')['isByteLength']>
|
|
2044
|
-
readonly isCreditCard: UnwrapRef<typeof import('./core/validation/src/is')['isCreditCard']>
|
|
2045
|
-
readonly isCurrency: UnwrapRef<typeof import('./core/validation/src/is')['isCurrency']>
|
|
2046
|
-
readonly isDark: UnwrapRef<typeof import('../resources/functions/dark')['isDark']>
|
|
2047
|
-
readonly isDataURI: UnwrapRef<typeof import('./core/validation/src/is')['isDataURI']>
|
|
2048
|
-
readonly isDate: UnwrapRef<typeof import('./core/validation/src/is')['isDate']>
|
|
2049
|
-
readonly isDeepEqual: UnwrapRef<typeof import('./core/utils/src/equal')['isDeepEqual']>
|
|
2050
|
-
readonly isDef: UnwrapRef<typeof import('./core/validation/src/is')['isDef']>
|
|
2051
|
-
readonly isDefined: UnwrapRef<typeof import('./core/utils/src/vendors')['isDefined']>
|
|
2052
|
-
readonly isEmail: UnwrapRef<typeof import('./core/validation/src/is')['isEmail']>
|
|
2053
|
-
readonly isEven: UnwrapRef<typeof import('./core/validation/src/is')['isEven']>
|
|
2054
|
-
readonly isEvenOrOdd: UnwrapRef<typeof import('./core/validation/src/is')['isEvenOrOdd']>
|
|
2055
|
-
readonly isFQDN: UnwrapRef<typeof import('./core/validation/src/is')['isFQDN']>
|
|
2056
|
-
readonly isFile: UnwrapRef<typeof import('./core/storage/src/index')['isFile']>
|
|
2057
|
-
readonly isFloat: UnwrapRef<typeof import('./core/validation/src/is')['isFloat']>
|
|
2058
|
-
readonly isFolder: UnwrapRef<typeof import('./core/storage/src/index')['isFolder']>
|
|
2059
|
-
readonly isFullWidth: UnwrapRef<typeof import('./core/validation/src/is')['isFullWidth']>
|
|
2060
|
-
readonly isFunction: UnwrapRef<typeof import('./core/validation/src/is')['isFunction']>
|
|
2061
|
-
readonly isHSL: UnwrapRef<typeof import('./core/validation/src/is')['isHSL']>
|
|
2062
|
-
readonly isHalfWidth: UnwrapRef<typeof import('./core/validation/src/is')['isHalfWidth']>
|
|
2063
|
-
readonly isHash: UnwrapRef<typeof import('./core/validation/src/is')['isHash']>
|
|
2064
|
-
readonly isHexColor: UnwrapRef<typeof import('./core/validation/src/is')['isHexColor']>
|
|
2065
|
-
readonly isHexadecimal: UnwrapRef<typeof import('./core/validation/src/is')['isHexadecimal']>
|
|
2066
|
-
readonly isIBAN: UnwrapRef<typeof import('./core/validation/src/is')['isIBAN']>
|
|
2067
|
-
readonly isIP: UnwrapRef<typeof import('./core/validation/src/is')['isIP']>
|
|
2068
|
-
readonly isIPRange: UnwrapRef<typeof import('./core/validation/src/is')['isIPRange']>
|
|
2069
|
-
readonly isISBN: UnwrapRef<typeof import('./core/validation/src/is')['isISBN']>
|
|
2070
|
-
readonly isISIN: UnwrapRef<typeof import('./core/validation/src/is')['isISIN']>
|
|
2071
|
-
readonly isISO31661Alpha2: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha2']>
|
|
2072
|
-
readonly isISO31661Alpha3: UnwrapRef<typeof import('./core/validation/src/is')['isISO31661Alpha3']>
|
|
2073
|
-
readonly isISO8601: UnwrapRef<typeof import('./core/validation/src/is')['isISO8601']>
|
|
2074
|
-
readonly isISRC: UnwrapRef<typeof import('./core/validation/src/is')['isISRC']>
|
|
2075
|
-
readonly isISSN: UnwrapRef<typeof import('./core/validation/src/is')['isISSN']>
|
|
2076
|
-
readonly isIdentityCard: UnwrapRef<typeof import('./core/validation/src/is')['isIdentityCard']>
|
|
2077
|
-
readonly isInteger: UnwrapRef<typeof import('./core/validation/src/is')['isInteger']>
|
|
2078
|
-
readonly isIntegerOrFloat: UnwrapRef<typeof import('./core/validation/src/is')['isIntegerOrFloat']>
|
|
2079
|
-
readonly isIpv6: UnwrapRef<typeof import('./core/utils/src/helpers')['isIpv6']>
|
|
2080
|
-
readonly isJSON: UnwrapRef<typeof import('./core/validation/src/is')['isJSON']>
|
|
2081
|
-
readonly isJWT: UnwrapRef<typeof import('./core/validation/src/is')['isJWT']>
|
|
2082
|
-
readonly isKeyOf: UnwrapRef<typeof import('./core/objects/src/index')['isKeyOf']>
|
|
2083
|
-
readonly isLatLong: UnwrapRef<typeof import('./core/validation/src/is')['isLatLong']>
|
|
2084
|
-
readonly isLatitude: UnwrapRef<typeof import('./core/validation/src/is')['isLatitude']>
|
|
2085
|
-
readonly isLongitude: UnwrapRef<typeof import('./core/validation/src/is')['isLongitude']>
|
|
2086
|
-
readonly isMACAddress: UnwrapRef<typeof import('./core/validation/src/is')['isMACAddress']>
|
|
2087
|
-
readonly isManifest: UnwrapRef<typeof import('./core/utils/src/helpers')['isManifest']>
|
|
2088
|
-
readonly isMap: UnwrapRef<typeof import('./core/validation/src/is')['isMap']>
|
|
2089
|
-
readonly isMimeType: UnwrapRef<typeof import('./core/validation/src/is')['isMimeType']>
|
|
2090
|
-
readonly isMobilePhone: UnwrapRef<typeof import('./core/validation/src/is')['isMobilePhone']>
|
|
2091
|
-
readonly isMoney: UnwrapRef<typeof import('./core/validation/src/is')['isMoney']>
|
|
2092
|
-
readonly isNegative: UnwrapRef<typeof import('./core/validation/src/is')['isNegative']>
|
|
2093
|
-
readonly isNull: UnwrapRef<typeof import('./core/validation/src/is')['isNull']>
|
|
2094
|
-
readonly isNumber: UnwrapRef<typeof import('./core/validation/src/is')['isNumber']>
|
|
2095
|
-
readonly isNumeric: UnwrapRef<typeof import('./core/validation/src/is')['isNumeric']>
|
|
2096
|
-
readonly isObject: UnwrapRef<typeof import('./core/validation/src/is')['isObject']>
|
|
2097
|
-
readonly isOdd: UnwrapRef<typeof import('./core/validation/src/is')['isOdd']>
|
|
2098
|
-
readonly isOptionalString: UnwrapRef<typeof import('./core/utils/src/helpers')['isOptionalString']>
|
|
2099
|
-
readonly isPlural: UnwrapRef<typeof import('./core/strings/src/pluralize')['isPlural']>
|
|
2100
|
-
readonly isPositive: UnwrapRef<typeof import('./core/validation/src/is')['isPositive']>
|
|
2101
|
-
readonly isPositiveOrNegative: UnwrapRef<typeof import('./core/validation/src/is')['isPositiveOrNegative']>
|
|
2102
|
-
readonly isPostalCode: UnwrapRef<typeof import('./core/validation/src/is')['isPostalCode']>
|
|
2103
|
-
readonly isPrimitive: UnwrapRef<typeof import('./core/validation/src/is')['isPrimitive']>
|
|
2104
|
-
readonly isProjectCreated: UnwrapRef<typeof import('./core/utils/src/helpers')['isProjectCreated']>
|
|
2105
|
-
readonly isPromise: UnwrapRef<typeof import('./core/validation/src/is')['isPromise']>
|
|
2106
|
-
readonly isProxy: UnwrapRef<typeof import('vue')['isProxy']>
|
|
2107
|
-
readonly isReactive: UnwrapRef<typeof import('vue')['isReactive']>
|
|
2108
|
-
readonly isReadonly: UnwrapRef<typeof import('vue')['isReadonly']>
|
|
2109
|
-
readonly isRef: UnwrapRef<typeof import('vue')['isRef']>
|
|
2110
|
-
readonly isRegExp: UnwrapRef<typeof import('./core/validation/src/is')['isRegExp']>
|
|
2111
|
-
readonly isServer: UnwrapRef<typeof import('./core/validation/src/is')['isServer']>
|
|
2112
|
-
readonly isSet: UnwrapRef<typeof import('./core/validation/src/is')['isSet']>
|
|
2113
|
-
readonly isSingular: UnwrapRef<typeof import('./core/strings/src/pluralize')['isSingular']>
|
|
2114
|
-
readonly isString: UnwrapRef<typeof import('./core/validation/src/is')['isString']>
|
|
2115
|
-
readonly isStrongPassword: UnwrapRef<typeof import('./core/validation/src/is')['isStrongPassword']>
|
|
2116
|
-
readonly isSymbol: UnwrapRef<typeof import('./core/validation/src/is')['isSymbol']>
|
|
2117
|
-
readonly isTruthy: UnwrapRef<typeof import('./core/utils/src/guards')['isTruthy']>
|
|
2118
|
-
readonly isURL: UnwrapRef<typeof import('./core/validation/src/is')['isURL']>
|
|
2119
|
-
readonly isUUID: UnwrapRef<typeof import('./core/validation/src/is')['isUUID']>
|
|
2120
|
-
readonly isUndefined: UnwrapRef<typeof import('./core/validation/src/is')['isUndefined']>
|
|
2121
|
-
readonly isWindow: UnwrapRef<typeof import('./core/validation/src/is')['isWindow']>
|
|
2122
|
-
readonly isZero: UnwrapRef<typeof import('./core/utils/src/currency')['isZero']>
|
|
2123
|
-
readonly it: UnwrapRef<typeof import('vitest')['it']>
|
|
2124
|
-
readonly italic: UnwrapRef<typeof import('./core/cli/src/utilities')['italic']>
|
|
2125
|
-
readonly join: UnwrapRef<typeof import('./core/path/src/index')['join']>
|
|
2126
|
-
readonly kebabCase: UnwrapRef<typeof import('./core/strings/src/case')['kebabCase']>
|
|
2127
|
-
readonly langPath: UnwrapRef<typeof import('./core/path/src/index')['langPath']>
|
|
2128
|
-
readonly last: UnwrapRef<typeof import('./core/arrays/src/helpers')['last']>
|
|
2129
|
-
readonly lastPageNumber: UnwrapRef<typeof import('./core/search-engine/src/index')['lastPageNumber']>
|
|
2130
|
-
readonly lessThan: UnwrapRef<typeof import('./core/utils/src/currency')['lessThan']>
|
|
2131
|
-
readonly lessThanOrEqual: UnwrapRef<typeof import('./core/utils/src/currency')['lessThanOrEqual']>
|
|
2132
|
-
readonly library: UnwrapRef<typeof import('../config/library')['default']>
|
|
2133
|
-
readonly libraryEntryPath: UnwrapRef<typeof import('./core/path/src/index')['libraryEntryPath']>
|
|
2134
|
-
readonly libsEntriesPath: UnwrapRef<typeof import('./core/path/src/index')['libsEntriesPath']>
|
|
2135
|
-
readonly libsPath: UnwrapRef<typeof import('./core/path/src/index')['libsPath']>
|
|
2136
|
-
readonly lightBlue: UnwrapRef<typeof import('./core/cli/src/utilities')['lightBlue']>
|
|
2137
|
-
readonly lightCyan: UnwrapRef<typeof import('./core/cli/src/utilities')['lightCyan']>
|
|
2138
|
-
readonly lightGray: UnwrapRef<typeof import('./core/cli/src/utilities')['lightGray']>
|
|
2139
|
-
readonly lightGreen: UnwrapRef<typeof import('./core/cli/src/utilities')['lightGreen']>
|
|
2140
|
-
readonly lightMagenta: UnwrapRef<typeof import('./core/cli/src/utilities')['lightMagenta']>
|
|
2141
|
-
readonly lightRed: UnwrapRef<typeof import('./core/cli/src/utilities')['lightRed']>
|
|
2142
|
-
readonly lightYellow: UnwrapRef<typeof import('./core/cli/src/utilities')['lightYellow']>
|
|
2143
|
-
readonly link: UnwrapRef<typeof import('./core/cli/src/utilities')['link']>
|
|
2144
|
-
readonly lintPath: UnwrapRef<typeof import('./core/path/src/index')['lintPath']>
|
|
2145
|
-
readonly listen: UnwrapRef<typeof import('./core/events/src/index')['listen']>
|
|
2146
|
-
readonly log: UnwrapRef<typeof import('./core/cli/src/console')['log']>
|
|
2147
|
-
readonly loggingPath: UnwrapRef<typeof import('./core/path/src/index')['loggingPath']>
|
|
2148
|
-
readonly logicNot: UnwrapRef<typeof import('./core/utils/src/math')['logicNot']>
|
|
2149
|
-
readonly logicOr: UnwrapRef<typeof import('./core/utils/src/math')['logicOr']>
|
|
2150
|
-
readonly logsPath: UnwrapRef<typeof import('./core/path/src/index')['logsPath']>
|
|
2151
|
-
readonly loop: UnwrapRef<typeof import('./core/utils/src/base')['loop']>
|
|
2152
|
-
readonly magenta: UnwrapRef<typeof import('./core/cli/src/utilities')['magenta']>
|
|
2153
|
-
readonly makeHash: UnwrapRef<typeof import('./core/security/src/hash')['makeHash']>
|
|
2154
|
-
readonly mapGamepadToXbox360Controller: UnwrapRef<typeof import('./core/utils/src/vendors')['mapGamepadToXbox360Controller']>
|
|
2155
|
-
readonly markRaw: UnwrapRef<typeof import('vue')['markRaw']>
|
|
2156
|
-
readonly maximum: UnwrapRef<typeof import('./core/utils/src/currency')['maximum']>
|
|
2157
|
-
readonly md5Encode: UnwrapRef<typeof import('./core/security/src/hash')['md5Encode']>
|
|
2158
|
-
readonly median: UnwrapRef<typeof import('./core/arrays/src/math')['median']>
|
|
2159
|
-
readonly memcached: UnwrapRef<typeof import('./core/cache/src/index')['memcached']>
|
|
2160
|
-
readonly mergeArrayable: UnwrapRef<typeof import('./core/arrays/src/helpers')['mergeArrayable']>
|
|
2161
|
-
readonly migrate: UnwrapRef<typeof import('./core/database/src/migrations/index')['migrate']>
|
|
2162
|
-
readonly minimum: UnwrapRef<typeof import('./core/utils/src/currency')['minimum']>
|
|
2163
|
-
readonly mitt: UnwrapRef<typeof import('./core/events/src/index')['mitt']>
|
|
2164
|
-
readonly mode: UnwrapRef<typeof import('./core/arrays/src/math')['mode']>
|
|
2165
|
-
readonly modelsPath: UnwrapRef<typeof import('./core/path/src/index')['modelsPath']>
|
|
2166
|
-
readonly modulesPath: UnwrapRef<typeof import('./core/path/src/index')['modulesPath']>
|
|
2167
|
-
readonly money: UnwrapRef<typeof import('./core/utils/src/currency')['money']>
|
|
2168
|
-
readonly move: UnwrapRef<typeof import('./core/arrays/src/helpers')['move']>
|
|
2169
|
-
readonly multiply: UnwrapRef<typeof import('./core/utils/src/currency')['multiply']>
|
|
2170
|
-
readonly nexmo: UnwrapRef<typeof import('./core/sms/src/index')['nexmo']>
|
|
2171
|
-
readonly nextTick: UnwrapRef<typeof import('vue')['nextTick']>
|
|
2172
|
-
readonly noCase: UnwrapRef<typeof import('./core/strings/src/case')['noCase']>
|
|
2173
|
-
readonly noNull: UnwrapRef<typeof import('./core/utils/src/guards')['noNull']>
|
|
2174
|
-
readonly normalize: UnwrapRef<typeof import('./core/path/src/index')['normalize']>
|
|
2175
|
-
readonly normalizeScale: UnwrapRef<typeof import('./core/utils/src/currency')['normalizeScale']>
|
|
2176
|
-
readonly normalizeString: UnwrapRef<typeof import('./core/path/src/index')['normalizeString']>
|
|
2177
|
-
readonly not: UnwrapRef<typeof import('./core/utils/src/math')['not']>
|
|
2178
|
-
readonly notNullish: UnwrapRef<typeof import('./core/utils/src/guards')['notNullish']>
|
|
2179
|
-
readonly notUndefined: UnwrapRef<typeof import('./core/utils/src/guards')['notUndefined']>
|
|
2180
|
-
readonly notification: UnwrapRef<typeof import('../config/notification')['default']>
|
|
2181
|
-
readonly notificationsPath: UnwrapRef<typeof import('./core/path/src/index')['notificationsPath']>
|
|
2182
|
-
readonly now: UnwrapRef<typeof import('./core/datetime/src/index')['now']>
|
|
2183
|
-
readonly number: UnwrapRef<typeof import('./core/validation/src/validate')['number']>
|
|
2184
|
-
readonly object: UnwrapRef<typeof import('./core/validation/src/validate')['object']>
|
|
2185
|
-
readonly objectEntries: UnwrapRef<typeof import('./core/objects/src/index')['objectEntries']>
|
|
2186
|
-
readonly objectKeys: UnwrapRef<typeof import('./core/objects/src/index')['objectKeys']>
|
|
2187
|
-
readonly objectMap: UnwrapRef<typeof import('./core/objects/src/index')['objectMap']>
|
|
2188
|
-
readonly objectPick: UnwrapRef<typeof import('./core/objects/src/index')['objectPick']>
|
|
2189
|
-
readonly objectsPath: UnwrapRef<typeof import('./core/path/src/index')['objectsPath']>
|
|
2190
|
-
readonly off: UnwrapRef<typeof import('./core/events/src/index')['off']>
|
|
2191
|
-
readonly ok: UnwrapRef<typeof import('./core/error-handling/src/index')['ok']>
|
|
2192
|
-
readonly okAsync: UnwrapRef<typeof import('./core/error-handling/src/index')['okAsync']>
|
|
2193
|
-
readonly onActivated: UnwrapRef<typeof import('vue')['onActivated']>
|
|
2194
|
-
readonly onBeforeMount: UnwrapRef<typeof import('vue')['onBeforeMount']>
|
|
2195
|
-
readonly onBeforeRouteLeave: UnwrapRef<typeof import('vue-router')['onBeforeRouteLeave']>
|
|
2196
|
-
readonly onBeforeRouteUpdate: UnwrapRef<typeof import('vue-router')['onBeforeRouteUpdate']>
|
|
2197
|
-
readonly onBeforeUnmount: UnwrapRef<typeof import('vue')['onBeforeUnmount']>
|
|
2198
|
-
readonly onBeforeUpdate: UnwrapRef<typeof import('vue')['onBeforeUpdate']>
|
|
2199
|
-
readonly onClickOutside: UnwrapRef<typeof import('./core/utils/src/vendors')['onClickOutside']>
|
|
2200
|
-
readonly onDeactivated: UnwrapRef<typeof import('vue')['onDeactivated']>
|
|
2201
|
-
readonly onErrorCaptured: UnwrapRef<typeof import('vue')['onErrorCaptured']>
|
|
2202
|
-
readonly onKeyDown: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyDown']>
|
|
2203
|
-
readonly onKeyPressed: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyPressed']>
|
|
2204
|
-
readonly onKeyStroke: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyStroke']>
|
|
2205
|
-
readonly onKeyUp: UnwrapRef<typeof import('./core/utils/src/vendors')['onKeyUp']>
|
|
2206
|
-
readonly onLongPress: UnwrapRef<typeof import('./core/utils/src/vendors')['onLongPress']>
|
|
2207
|
-
readonly onMounted: UnwrapRef<typeof import('vue')['onMounted']>
|
|
2208
|
-
readonly onRenderTracked: UnwrapRef<typeof import('vue')['onRenderTracked']>
|
|
2209
|
-
readonly onRenderTriggered: UnwrapRef<typeof import('vue')['onRenderTriggered']>
|
|
2210
|
-
readonly onScopeDispose: UnwrapRef<typeof import('vue')['onScopeDispose']>
|
|
2211
|
-
readonly onServerPrefetch: UnwrapRef<typeof import('vue')['onServerPrefetch']>
|
|
2212
|
-
readonly onStartTyping: UnwrapRef<typeof import('./core/utils/src/vendors')['onStartTyping']>
|
|
2213
|
-
readonly onUnmounted: UnwrapRef<typeof import('vue')['onUnmounted']>
|
|
2214
|
-
readonly onUpdated: UnwrapRef<typeof import('vue')['onUpdated']>
|
|
2215
|
-
readonly onboardingPath: UnwrapRef<typeof import('./core/path/src/index')['onboardingPath']>
|
|
2216
|
-
readonly or: UnwrapRef<typeof import('./core/utils/src/math')['or']>
|
|
2217
|
-
readonly ormPath: UnwrapRef<typeof import('./core/path/src/index')['ormPath']>
|
|
2218
|
-
readonly outro: UnwrapRef<typeof import('./core/cli/src/helpers')['outro']>
|
|
2219
|
-
readonly p: UnwrapRef<typeof import('./core/utils/src/p')['p']>
|
|
2220
|
-
readonly packageJsonPath: UnwrapRef<typeof import('./core/path/src/index')['packageJsonPath']>
|
|
2221
|
-
readonly pagesPath: UnwrapRef<typeof import('./core/path/src/index')['pagesPath']>
|
|
2222
|
-
readonly paramCase: UnwrapRef<typeof import('./core/strings/src/case')['paramCase']>
|
|
2223
|
-
readonly parse: UnwrapRef<typeof import('./core/path/src/index')['parse']>
|
|
2224
|
-
readonly parseArgs: UnwrapRef<typeof import('./core/cli/src/parse')['parseArgs']>
|
|
2225
|
-
readonly parseArgv: UnwrapRef<typeof import('./core/cli/src/parse')['parseArgv']>
|
|
2226
|
-
readonly parseOptions: UnwrapRef<typeof import('./core/cli/src/parse')['parseOptions']>
|
|
2227
|
-
readonly parseYaml: UnwrapRef<typeof import('./core/utils/src/helpers')['parseYaml']>
|
|
2228
|
-
readonly partition: UnwrapRef<typeof import('./core/arrays/src/helpers')['partition']>
|
|
2229
|
-
readonly pascalCase: UnwrapRef<typeof import('./core/strings/src/case')['pascalCase']>
|
|
2230
|
-
readonly path: UnwrapRef<typeof import('./core/path/src/index')['path']>
|
|
2231
|
-
readonly pathCase: UnwrapRef<typeof import('./core/strings/src/case')['pathCase']>
|
|
2232
|
-
readonly pathPath: UnwrapRef<typeof import('./core/path/src/index')['pathPath']>
|
|
2233
|
-
readonly payment: UnwrapRef<typeof import('../config/payment')['default']>
|
|
2234
|
-
readonly paymentsPath: UnwrapRef<typeof import('./core/path/src/index')['paymentsPath']>
|
|
2235
|
-
readonly perPage: UnwrapRef<typeof import('./core/search-engine/src/index')['perPage']>
|
|
2236
|
-
readonly plivo: UnwrapRef<typeof import('./core/sms/src/index')['plivo']>
|
|
2237
|
-
readonly plural: UnwrapRef<typeof import('./core/strings/src/pluralize')['plural']>
|
|
2238
|
-
readonly preferredDark: UnwrapRef<typeof import('../resources/functions/dark')['preferredDark']>
|
|
2239
|
-
readonly presetForms: UnwrapRef<typeof import('@stacksjs/ui')['presetForms']>
|
|
2240
|
-
readonly projectConfigPath: UnwrapRef<typeof import('./core/path/src/index')['projectConfigPath']>
|
|
2241
|
-
readonly projectPath: UnwrapRef<typeof import('./core/path/src/index')['projectPath']>
|
|
2242
|
-
readonly projectStoragePath: UnwrapRef<typeof import('./core/path/src/index')['projectStoragePath']>
|
|
2243
|
-
readonly prompt: UnwrapRef<typeof import('./core/cli/src/console')['prompt']>
|
|
2244
|
-
readonly provide: UnwrapRef<typeof import('vue')['provide']>
|
|
2245
|
-
readonly pushPath: UnwrapRef<typeof import('./core/path/src/index')['pushPath']>
|
|
2246
|
-
readonly query: UnwrapRef<typeof import('./core/search-engine/src/index')['query']>
|
|
2247
|
-
readonly queryBuilderPath: UnwrapRef<typeof import('./core/path/src/index')['queryBuilderPath']>
|
|
2248
|
-
readonly queuePath: UnwrapRef<typeof import('./core/path/src/index')['queuePath']>
|
|
2249
|
-
readonly rand: UnwrapRef<typeof import('./core/utils/src/math')['rand']>
|
|
2250
|
-
readonly randomStr: UnwrapRef<typeof import('./core/strings/src/utils')['randomStr']>
|
|
2251
|
-
readonly range: UnwrapRef<typeof import('./core/arrays/src/helpers')['range']>
|
|
2252
|
-
readonly reactive: UnwrapRef<typeof import('vue')['reactive']>
|
|
2253
|
-
readonly readJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['readJsonFile']>
|
|
2254
|
-
readonly readPackageJson: UnwrapRef<typeof import('./core/storage/src/index')['readPackageJson']>
|
|
2255
|
-
readonly readTextFile: UnwrapRef<typeof import('./core/storage/src/index')['readTextFile']>
|
|
2256
|
-
readonly readonly: UnwrapRef<typeof import('vue')['readonly']>
|
|
2257
|
-
readonly realtimePath: UnwrapRef<typeof import('./core/path/src/index')['realtimePath']>
|
|
2258
|
-
readonly red: UnwrapRef<typeof import('./core/cli/src/utilities')['red']>
|
|
2259
|
-
readonly redis: UnwrapRef<typeof import('./core/cache/src/index')['redis']>
|
|
2260
|
-
readonly ref: UnwrapRef<typeof import('vue')['ref']>
|
|
2261
|
-
readonly relative: UnwrapRef<typeof import('./core/path/src/index')['relative']>
|
|
2262
|
-
readonly remove: UnwrapRef<typeof import('./core/arrays/src/helpers')['remove']>
|
|
2263
|
-
readonly renderHeadToString: UnwrapRef<typeof import('./core/utils/src/vendors')['renderHeadToString']>
|
|
2264
|
-
readonly reset: UnwrapRef<typeof import('./core/cli/src/utilities')['reset']>
|
|
2265
|
-
readonly resolve: UnwrapRef<typeof import('./core/path/src/index')['resolve']>
|
|
2266
|
-
readonly resolveComponent: UnwrapRef<typeof import('vue')['resolveComponent']>
|
|
2267
|
-
readonly resourcesPath: UnwrapRef<typeof import('./core/path/src/index')['resourcesPath']>
|
|
2268
|
-
readonly results: UnwrapRef<typeof import('./core/search-engine/src/index')['results']>
|
|
2269
|
-
readonly rimraf: UnwrapRef<typeof import('./core/utils/src/delete')['rimraf']>
|
|
2270
|
-
readonly root: UnwrapRef<typeof import('./core/signals/src/index')['root']>
|
|
2271
|
-
readonly route: UnwrapRef<typeof import('./core/router/src/index')['route']>
|
|
2272
|
-
readonly routerPath: UnwrapRef<typeof import('./core/path/src/index')['routerPath']>
|
|
2273
|
-
readonly routesPath: UnwrapRef<typeof import('./core/path/src/index')['routesPath']>
|
|
2274
|
-
readonly runCommand: UnwrapRef<typeof import('./core/cli/src/run')['runCommand']>
|
|
2275
|
-
readonly runCommands: UnwrapRef<typeof import('./core/cli/src/run')['runCommands']>
|
|
2276
|
-
readonly runNpmScript: UnwrapRef<typeof import('./core/utils/src/helpers')['runNpmScript']>
|
|
2277
|
-
readonly runtimePath: UnwrapRef<typeof import('./core/path/src/index')['runtimePath']>
|
|
2278
|
-
readonly sample: UnwrapRef<typeof import('./core/arrays/src/helpers')['sample']>
|
|
2279
|
-
readonly schedulerPath: UnwrapRef<typeof import('./core/path/src/index')['schedulerPath']>
|
|
2280
|
-
readonly scriptsPath: UnwrapRef<typeof import('./core/path/src/index')['scriptsPath']>
|
|
2281
|
-
readonly searchEngine: UnwrapRef<typeof import('../config/search-engine')['default']>
|
|
2282
|
-
readonly searchEnginePath: UnwrapRef<typeof import('./core/path/src/index')['searchEnginePath']>
|
|
2283
|
-
readonly searchFilters: UnwrapRef<typeof import('./core/search-engine/src/index')['searchFilters']>
|
|
2284
|
-
readonly searchParams: UnwrapRef<typeof import('./core/search-engine/src/index')['searchParams']>
|
|
2285
|
-
readonly securityPath: UnwrapRef<typeof import('./core/path/src/index')['securityPath']>
|
|
2286
|
-
readonly seed: UnwrapRef<typeof import('./core/database/src/seeder/index')['seed']>
|
|
2287
|
-
readonly semver: UnwrapRef<typeof import('./core/utils/src/versions')['semver']>
|
|
2288
|
-
readonly sentenceCase: UnwrapRef<typeof import('./core/strings/src/case')['sentenceCase']>
|
|
2289
|
-
readonly sep: UnwrapRef<typeof import('./core/path/src/index')['sep']>
|
|
2290
|
-
readonly serverPath: UnwrapRef<typeof import('./core/path/src/index')['serverPath']>
|
|
2291
|
-
readonly serverlessPath: UnwrapRef<typeof import('./core/path/src/index')['serverlessPath']>
|
|
2292
|
-
readonly services: UnwrapRef<typeof import('../config/services')['default']>
|
|
2293
|
-
readonly setEnvValue: UnwrapRef<typeof import('./core/utils/src/helpers')['setEnvValue']>
|
|
2294
|
-
readonly setSSRHandler: UnwrapRef<typeof import('./core/utils/src/vendors')['setSSRHandler']>
|
|
2295
|
-
readonly setTotalHits: UnwrapRef<typeof import('./core/search-engine/src/index')['setTotalHits']>
|
|
2296
|
-
readonly settingsPath: UnwrapRef<typeof import('./core/path/src/index')['settingsPath']>
|
|
2297
|
-
readonly shallowReactive: UnwrapRef<typeof import('vue')['shallowReactive']>
|
|
2298
|
-
readonly shallowReadonly: UnwrapRef<typeof import('vue')['shallowReadonly']>
|
|
2299
|
-
readonly shallowRef: UnwrapRef<typeof import('vue')['shallowRef']>
|
|
2300
|
-
readonly shuffle: UnwrapRef<typeof import('./core/arrays/src/helpers')['shuffle']>
|
|
2301
|
-
readonly signal: UnwrapRef<typeof import('./core/signals/src/index')['signal']>
|
|
2302
|
-
readonly signalsPath: UnwrapRef<typeof import('./core/path/src/index')['signalsPath']>
|
|
2303
|
-
readonly singular: UnwrapRef<typeof import('./core/strings/src/pluralize')['singular']>
|
|
2304
|
-
readonly slack: UnwrapRef<typeof import('./core/chat/src/index')['slack']>
|
|
2305
|
-
readonly slash: UnwrapRef<typeof import('./core/strings/src/utils')['slash']>
|
|
2306
|
-
readonly sleep: UnwrapRef<typeof import('./core/utils/src/promise')['sleep']>
|
|
2307
|
-
readonly slug: UnwrapRef<typeof import('./core/strings/src/utils')['slug']>
|
|
2308
|
-
readonly slugPath: UnwrapRef<typeof import('./core/path/src/index')['slugPath']>
|
|
2309
|
-
readonly sms77: UnwrapRef<typeof import('./core/sms/src/index')['sms77']>
|
|
2310
|
-
readonly smsPath: UnwrapRef<typeof import('./core/path/src/index')['smsPath']>
|
|
2311
|
-
readonly snakeCase: UnwrapRef<typeof import('./core/strings/src/case')['snakeCase']>
|
|
2312
|
-
readonly sns: UnwrapRef<typeof import('./core/sms/src/index')['sns']>
|
|
2313
|
-
readonly sort: UnwrapRef<typeof import('./core/search-engine/src/index')['sort']>
|
|
2314
|
-
readonly sorts: UnwrapRef<typeof import('./core/search-engine/src/index')['sorts']>
|
|
2315
|
-
readonly spawn: UnwrapRef<typeof import('./core/cli/src/command')['spawn']>
|
|
2316
|
-
readonly spinner: UnwrapRef<typeof import('./core/cli/src/spinner')['spinner']>
|
|
2317
|
-
readonly sql: UnwrapRef<typeof import('./core/query-builder/src/kysely')['sql']>
|
|
2318
|
-
readonly stacksPath: UnwrapRef<typeof import('./core/path/src/index')['stacksPath']>
|
|
2319
|
-
readonly startSpinner: UnwrapRef<typeof import('./core/cli/src/helpers')['startSpinner']>
|
|
2320
|
-
readonly storage: UnwrapRef<typeof import('../config/storage')['default']>
|
|
2321
|
-
readonly storagePath: UnwrapRef<typeof import('./core/path/src/index')['storagePath']>
|
|
2322
|
-
readonly storesPath: UnwrapRef<typeof import('./core/path/src/index')['storesPath']>
|
|
2323
|
-
readonly str: UnwrapRef<typeof import('./core/strings/src/macro')['str']>
|
|
2324
|
-
readonly strikethrough: UnwrapRef<typeof import('./core/cli/src/utilities')['strikethrough']>
|
|
2325
|
-
readonly string: UnwrapRef<typeof import('./core/validation/src/validate')['string']>
|
|
2326
|
-
readonly stringsPath: UnwrapRef<typeof import('./core/path/src/index')['stringsPath']>
|
|
2327
|
-
readonly stripe: UnwrapRef<typeof import('./core/payments/src/index')['stripe']>
|
|
2328
|
-
readonly subtract: UnwrapRef<typeof import('./core/utils/src/currency')['subtract']>
|
|
2329
|
-
readonly suite: UnwrapRef<typeof import('vitest')['suite']>
|
|
2330
|
-
readonly sum: UnwrapRef<typeof import('./core/arrays/src/math')['sum']>
|
|
2331
|
-
readonly syncRef: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRef']>
|
|
2332
|
-
readonly syncRefs: UnwrapRef<typeof import('./core/utils/src/vendors')['syncRefs']>
|
|
2333
|
-
readonly tailwindConfig: UnwrapRef<typeof import('./core/notifications/src/tailwind.config')['default']>
|
|
2334
|
-
readonly tap: UnwrapRef<typeof import('./core/utils/src/function')['tap']>
|
|
2335
|
-
readonly teams: UnwrapRef<typeof import('./core/chat/src/index')['teams']>
|
|
2336
|
-
readonly telnyx: UnwrapRef<typeof import('./core/sms/src/index')['telnyx']>
|
|
2337
|
-
readonly template: UnwrapRef<typeof import('./core/strings/src/utils')['template']>
|
|
2338
|
-
readonly templateRef: UnwrapRef<typeof import('./core/utils/src/vendors')['templateRef']>
|
|
2339
|
-
readonly termii: UnwrapRef<typeof import('./core/sms/src/index')['termii']>
|
|
2340
|
-
readonly test: UnwrapRef<typeof import('vitest')['test']>
|
|
2341
|
-
readonly testingPath: UnwrapRef<typeof import('./core/path/src/index')['testingPath']>
|
|
2342
|
-
readonly testsPath: UnwrapRef<typeof import('./core/path/src/index')['testsPath']>
|
|
2343
|
-
readonly throttle: UnwrapRef<typeof import('./core/utils/src/throttle')['throttle']>
|
|
2344
|
-
readonly throttledRef: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledRef']>
|
|
2345
|
-
readonly throttledWatch: UnwrapRef<typeof import('./core/utils/src/vendors')['throttledWatch']>
|
|
2346
|
-
readonly tick: UnwrapRef<typeof import('./core/signals/src/index')['tick']>
|
|
2347
|
-
readonly titleCase: UnwrapRef<typeof import('./core/strings/src/case')['titleCase']>
|
|
2348
|
-
readonly toArray: UnwrapRef<typeof import('./core/arrays/src/helpers')['toArray']>
|
|
2349
|
-
readonly toDecimal: UnwrapRef<typeof import('./core/utils/src/currency')['toDecimal']>
|
|
2350
|
-
readonly toNamespacedPath: UnwrapRef<typeof import('./core/path/src/index')['toNamespacedPath']>
|
|
2351
|
-
readonly toRaw: UnwrapRef<typeof import('vue')['toRaw']>
|
|
2352
|
-
readonly toReactive: UnwrapRef<typeof import('./core/utils/src/vendors')['toReactive']>
|
|
2353
|
-
readonly toRef: UnwrapRef<typeof import('vue')['toRef']>
|
|
2354
|
-
readonly toRefs: UnwrapRef<typeof import('vue')['toRefs']>
|
|
2355
|
-
readonly toSnapshot: UnwrapRef<typeof import('./core/utils/src/currency')['toSnapshot']>
|
|
2356
|
-
readonly toString: UnwrapRef<typeof import('./core/utils/src/base')['toString']>
|
|
2357
|
-
readonly toUnits: UnwrapRef<typeof import('./core/utils/src/currency')['toUnits']>
|
|
2358
|
-
readonly toValue: UnwrapRef<typeof import('vue')['toValue']>
|
|
2359
|
-
readonly toggleDark: UnwrapRef<typeof import('../resources/functions/dark')['toggleDark']>
|
|
2360
|
-
readonly totalPages: UnwrapRef<typeof import('./core/search-engine/src/index')['totalPages']>
|
|
2361
|
-
readonly transformerCompileClass: UnwrapRef<typeof import('@stacksjs/ui')['transformerCompileClass']>
|
|
2362
|
-
readonly triggerRef: UnwrapRef<typeof import('vue')['triggerRef']>
|
|
2363
|
-
readonly trimScale: UnwrapRef<typeof import('./core/utils/src/currency')['trimScale']>
|
|
2364
|
-
readonly truncate: UnwrapRef<typeof import('./core/strings/src/utils')['truncate']>
|
|
2365
|
-
readonly tryOnBeforeMount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeMount']>
|
|
2366
|
-
readonly tryOnBeforeUnmount: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnBeforeUnmount']>
|
|
2367
|
-
readonly tryOnMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnMounted']>
|
|
2368
|
-
readonly tryOnScopeDispose: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnScopeDispose']>
|
|
2369
|
-
readonly tryOnUnmounted: UnwrapRef<typeof import('./core/utils/src/vendors')['tryOnUnmounted']>
|
|
2370
|
-
readonly twilio: UnwrapRef<typeof import('./core/sms/src/index')['twilio']>
|
|
2371
|
-
readonly typesPath: UnwrapRef<typeof import('./core/path/src/index')['typesPath']>
|
|
2372
|
-
readonly ui: UnwrapRef<typeof import('../config/ui')['default']>
|
|
2373
|
-
readonly uiPath: UnwrapRef<typeof import('./core/path/src/index')['uiPath']>
|
|
2374
|
-
readonly underline: UnwrapRef<typeof import('./core/cli/src/utilities')['underline']>
|
|
2375
|
-
readonly uniq: UnwrapRef<typeof import('./core/arrays/src/helpers')['uniq']>
|
|
2376
|
-
readonly unique: UnwrapRef<typeof import('./core/arrays/src/helpers')['unique']>
|
|
2377
|
-
readonly uniqueBy: UnwrapRef<typeof import('./core/arrays/src/helpers')['uniqueBy']>
|
|
2378
|
-
readonly unit: UnwrapRef<typeof import('./core/testing/src/index')['unit']>
|
|
2379
|
-
readonly unref: UnwrapRef<typeof import('vue')['unref']>
|
|
2380
|
-
readonly unrefElement: UnwrapRef<typeof import('./core/utils/src/vendors')['unrefElement']>
|
|
2381
|
-
readonly until: UnwrapRef<typeof import('./core/utils/src/vendors')['until']>
|
|
2382
|
-
readonly updateConfigFile: UnwrapRef<typeof import('./core/storage/src/index')['updateConfigFile']>
|
|
2383
|
-
readonly upstash: UnwrapRef<typeof import('./core/cache/src/index')['upstash']>
|
|
2384
|
-
readonly useAbs: UnwrapRef<typeof import('./core/utils/src/math')['useAbs']>
|
|
2385
|
-
readonly useActiveElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useActiveElement']>
|
|
2386
|
-
readonly useAnimate: UnwrapRef<typeof import('./core/utils/src/vendors')['useAnimate']>
|
|
2387
|
-
readonly useAsyncQueue: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncQueue']>
|
|
2388
|
-
readonly useAsyncState: UnwrapRef<typeof import('./core/utils/src/vendors')['useAsyncState']>
|
|
2389
|
-
readonly useAttrs: UnwrapRef<typeof import('vue')['useAttrs']>
|
|
2390
|
-
readonly useAverage: UnwrapRef<typeof import('./core/utils/src/math')['useAverage']>
|
|
2391
|
-
readonly useBase64: UnwrapRef<typeof import('./core/utils/src/vendors')['useBase64']>
|
|
2392
|
-
readonly useBattery: UnwrapRef<typeof import('./core/utils/src/vendors')['useBattery']>
|
|
2393
|
-
readonly useBluetooth: UnwrapRef<typeof import('./core/utils/src/vendors')['useBluetooth']>
|
|
2394
|
-
readonly useBreakpoints: UnwrapRef<typeof import('./core/utils/src/vendors')['useBreakpoints']>
|
|
2395
|
-
readonly useBroadcastChannel: UnwrapRef<typeof import('./core/utils/src/vendors')['useBroadcastChannel']>
|
|
2396
|
-
readonly useBrowserLocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useBrowserLocation']>
|
|
2397
|
-
readonly useCached: UnwrapRef<typeof import('./core/utils/src/vendors')['useCached']>
|
|
2398
|
-
readonly useCeil: UnwrapRef<typeof import('./core/utils/src/math')['useCeil']>
|
|
2399
|
-
readonly useChat: UnwrapRef<typeof import('./core/notifications/src/index')['useChat']>
|
|
2400
|
-
readonly useClamp: UnwrapRef<typeof import('./core/utils/src/math')['useClamp']>
|
|
2401
|
-
readonly useClipboard: UnwrapRef<typeof import('./core/utils/src/vendors')['useClipboard']>
|
|
2402
|
-
readonly useCloned: UnwrapRef<typeof import('./core/utils/src/vendors')['useCloned']>
|
|
2403
|
-
readonly useColorMode: UnwrapRef<typeof import('./core/utils/src/vendors')['useColorMode']>
|
|
2404
|
-
readonly useConfirmDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useConfirmDialog']>
|
|
2405
|
-
readonly useCssModule: UnwrapRef<typeof import('vue')['useCssModule']>
|
|
2406
|
-
readonly useCssVar: UnwrapRef<typeof import('./core/utils/src/vendors')['useCssVar']>
|
|
2407
|
-
readonly useCssVars: UnwrapRef<typeof import('vue')['useCssVars']>
|
|
2408
|
-
readonly useCurrentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useCurrentElement']>
|
|
2409
|
-
readonly useCycleList: UnwrapRef<typeof import('./core/utils/src/vendors')['useCycleList']>
|
|
2410
|
-
readonly useDark: UnwrapRef<typeof import('./core/utils/src/vendors')['useDark']>
|
|
2411
|
-
readonly useDateFormat: UnwrapRef<typeof import('./core/utils/src/vendors')['useDateFormat']>
|
|
2412
|
-
readonly useDebouncedRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useDebouncedRefHistory']>
|
|
2413
|
-
readonly useDeviceMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceMotion']>
|
|
2414
|
-
readonly useDeviceOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useDeviceOrientation']>
|
|
2415
|
-
readonly useDevicePixelRatio: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicePixelRatio']>
|
|
2416
|
-
readonly useDevicesList: UnwrapRef<typeof import('./core/utils/src/vendors')['useDevicesList']>
|
|
2417
|
-
readonly useDisplayMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useDisplayMedia']>
|
|
2418
|
-
readonly useDocumentVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useDocumentVisibility']>
|
|
2419
|
-
readonly useDraggable: UnwrapRef<typeof import('./core/utils/src/vendors')['useDraggable']>
|
|
2420
|
-
readonly useDropZone: UnwrapRef<typeof import('./core/utils/src/vendors')['useDropZone']>
|
|
2421
|
-
readonly useElementBounding: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementBounding']>
|
|
2422
|
-
readonly useElementByPoint: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementByPoint']>
|
|
2423
|
-
readonly useElementHover: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementHover']>
|
|
2424
|
-
readonly useElementSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementSize']>
|
|
2425
|
-
readonly useElementVisibility: UnwrapRef<typeof import('./core/utils/src/vendors')['useElementVisibility']>
|
|
2426
|
-
readonly useEmail: UnwrapRef<typeof import('./core/notifications/src/index')['useEmail']>
|
|
2427
|
-
readonly useEvent: UnwrapRef<typeof import('./core/events/src/index')['useEvent']>
|
|
2428
|
-
readonly useEventBus: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventBus']>
|
|
2429
|
-
readonly useEventListener: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventListener']>
|
|
2430
|
-
readonly useEventSource: UnwrapRef<typeof import('./core/utils/src/vendors')['useEventSource']>
|
|
2431
|
-
readonly useEvents: UnwrapRef<typeof import('./core/events/src/index')['useEvents']>
|
|
2432
|
-
readonly useEyeDropper: UnwrapRef<typeof import('./core/utils/src/vendors')['useEyeDropper']>
|
|
2433
|
-
readonly useFavicon: UnwrapRef<typeof import('./core/utils/src/vendors')['useFavicon']>
|
|
2434
|
-
readonly useFetch: UnwrapRef<typeof import('./core/utils/src/vendors')['useFetch']>
|
|
2435
|
-
readonly useFileDialog: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileDialog']>
|
|
2436
|
-
readonly useFileSystemAccess: UnwrapRef<typeof import('./core/utils/src/vendors')['useFileSystemAccess']>
|
|
2437
|
-
readonly useFloor: UnwrapRef<typeof import('./core/utils/src/math')['useFloor']>
|
|
2438
|
-
readonly useFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocus']>
|
|
2439
|
-
readonly useFocusWithin: UnwrapRef<typeof import('./core/utils/src/vendors')['useFocusWithin']>
|
|
2440
|
-
readonly useFps: UnwrapRef<typeof import('./core/utils/src/vendors')['useFps']>
|
|
2441
|
-
readonly useFullscreen: UnwrapRef<typeof import('./core/utils/src/vendors')['useFullscreen']>
|
|
2442
|
-
readonly useGamepad: UnwrapRef<typeof import('./core/utils/src/vendors')['useGamepad']>
|
|
2443
|
-
readonly useGeolocation: UnwrapRef<typeof import('./core/utils/src/vendors')['useGeolocation']>
|
|
2444
|
-
readonly useIdle: UnwrapRef<typeof import('./core/utils/src/vendors')['useIdle']>
|
|
2445
|
-
readonly useImage: UnwrapRef<typeof import('./core/utils/src/vendors')['useImage']>
|
|
2446
|
-
readonly useInfiniteScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useInfiniteScroll']>
|
|
2447
|
-
readonly useIntersectionObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useIntersectionObserver']>
|
|
2448
|
-
readonly useKeyModifier: UnwrapRef<typeof import('./core/utils/src/vendors')['useKeyModifier']>
|
|
2449
|
-
readonly useLink: UnwrapRef<typeof import('vue-router')['useLink']>
|
|
2450
|
-
readonly useLocalStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useLocalStorage']>
|
|
2451
|
-
readonly useMagicKeys: UnwrapRef<typeof import('./core/utils/src/vendors')['useMagicKeys']>
|
|
2452
|
-
readonly useManualRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useManualRefHistory']>
|
|
2453
|
-
readonly useMath: UnwrapRef<typeof import('./core/utils/src/math')['useMath']>
|
|
2454
|
-
readonly useMax: UnwrapRef<typeof import('./core/utils/src/math')['useMax']>
|
|
2455
|
-
readonly useMediaControls: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaControls']>
|
|
2456
|
-
readonly useMediaQuery: UnwrapRef<typeof import('./core/utils/src/vendors')['useMediaQuery']>
|
|
2457
|
-
readonly useMemoize: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemoize']>
|
|
2458
|
-
readonly useMemory: UnwrapRef<typeof import('./core/utils/src/vendors')['useMemory']>
|
|
2459
|
-
readonly useMin: UnwrapRef<typeof import('./core/utils/src/math')['useMin']>
|
|
2460
|
-
readonly useMounted: UnwrapRef<typeof import('./core/utils/src/vendors')['useMounted']>
|
|
2461
|
-
readonly useMouse: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouse']>
|
|
2462
|
-
readonly useMouseInElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useMouseInElement']>
|
|
2463
|
-
readonly useMousePressed: UnwrapRef<typeof import('./core/utils/src/vendors')['useMousePressed']>
|
|
2464
|
-
readonly useMutationObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useMutationObserver']>
|
|
2465
|
-
readonly useNavigatorLanguage: UnwrapRef<typeof import('./core/utils/src/vendors')['useNavigatorLanguage']>
|
|
2466
|
-
readonly useNetwork: UnwrapRef<typeof import('./core/utils/src/vendors')['useNetwork']>
|
|
2467
|
-
readonly useNotification: UnwrapRef<typeof import('./core/notifications/src/index')['useNotification']>
|
|
2468
|
-
readonly useNow: UnwrapRef<typeof import('./core/utils/src/vendors')['useNow']>
|
|
2469
|
-
readonly useObjectUrl: UnwrapRef<typeof import('./core/utils/src/vendors')['useObjectUrl']>
|
|
2470
|
-
readonly useOffsetPagination: UnwrapRef<typeof import('./core/utils/src/vendors')['useOffsetPagination']>
|
|
2471
|
-
readonly useOnline: UnwrapRef<typeof import('./core/utils/src/vendors')['useOnline']>
|
|
2472
|
-
readonly usePageLeave: UnwrapRef<typeof import('./core/utils/src/vendors')['usePageLeave']>
|
|
2473
|
-
readonly useParallax: UnwrapRef<typeof import('./core/utils/src/vendors')['useParallax']>
|
|
2474
|
-
readonly useParentElement: UnwrapRef<typeof import('./core/utils/src/vendors')['useParentElement']>
|
|
2475
|
-
readonly usePerformanceObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['usePerformanceObserver']>
|
|
2476
|
-
readonly usePermission: UnwrapRef<typeof import('./core/utils/src/vendors')['usePermission']>
|
|
2477
|
-
readonly usePointer: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointer']>
|
|
2478
|
-
readonly usePointerLock: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerLock']>
|
|
2479
|
-
readonly usePointerSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['usePointerSwipe']>
|
|
2480
|
-
readonly usePrecision: UnwrapRef<typeof import('./core/utils/src/math')['usePrecision']>
|
|
2481
|
-
readonly usePreferredColorScheme: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredColorScheme']>
|
|
2482
|
-
readonly usePreferredContrast: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredContrast']>
|
|
2483
|
-
readonly usePreferredDark: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredDark']>
|
|
2484
|
-
readonly usePreferredLanguages: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredLanguages']>
|
|
2485
|
-
readonly usePreferredReducedMotion: UnwrapRef<typeof import('./core/utils/src/vendors')['usePreferredReducedMotion']>
|
|
2486
|
-
readonly usePrevious: UnwrapRef<typeof import('./core/utils/src/vendors')['usePrevious']>
|
|
2487
|
-
readonly useProjection: UnwrapRef<typeof import('./core/utils/src/math')['useProjection']>
|
|
2488
|
-
readonly useRafFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useRafFn']>
|
|
2489
|
-
readonly useRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useRefHistory']>
|
|
2490
|
-
readonly useResizeObserver: UnwrapRef<typeof import('./core/utils/src/vendors')['useResizeObserver']>
|
|
2491
|
-
readonly useRound: UnwrapRef<typeof import('./core/utils/src/math')['useRound']>
|
|
2492
|
-
readonly useRoute: UnwrapRef<typeof import('vue-router')['useRoute']>
|
|
2493
|
-
readonly useRouter: UnwrapRef<typeof import('vue-router')['useRouter']>
|
|
2494
|
-
readonly useSMS: UnwrapRef<typeof import('./core/notifications/src/index')['useSMS']>
|
|
2495
|
-
readonly useScreenOrientation: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenOrientation']>
|
|
2496
|
-
readonly useScreenSafeArea: UnwrapRef<typeof import('./core/utils/src/vendors')['useScreenSafeArea']>
|
|
2497
|
-
readonly useScriptTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useScriptTag']>
|
|
2498
|
-
readonly useScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useScroll']>
|
|
2499
|
-
readonly useScrollLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useScrollLock']>
|
|
2500
|
-
readonly useSearchEngine: UnwrapRef<typeof import('./core/search-engine/src/index')['useSearchEngine']>
|
|
2501
|
-
readonly useSessionStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useSessionStorage']>
|
|
2502
|
-
readonly useShare: UnwrapRef<typeof import('./core/utils/src/vendors')['useShare']>
|
|
2503
|
-
readonly useSlots: UnwrapRef<typeof import('vue')['useSlots']>
|
|
2504
|
-
readonly useSorted: UnwrapRef<typeof import('./core/utils/src/vendors')['useSorted']>
|
|
2505
|
-
readonly useSpeechRecognition: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechRecognition']>
|
|
2506
|
-
readonly useSpeechSynthesis: UnwrapRef<typeof import('./core/utils/src/vendors')['useSpeechSynthesis']>
|
|
2507
|
-
readonly useStepper: UnwrapRef<typeof import('./core/utils/src/vendors')['useStepper']>
|
|
2508
|
-
readonly useStorage: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorage']>
|
|
2509
|
-
readonly useStorageAsync: UnwrapRef<typeof import('./core/utils/src/vendors')['useStorageAsync']>
|
|
2510
|
-
readonly useStyleTag: UnwrapRef<typeof import('./core/utils/src/vendors')['useStyleTag']>
|
|
2511
|
-
readonly useSum: UnwrapRef<typeof import('./core/utils/src/math')['useSum']>
|
|
2512
|
-
readonly useSupported: UnwrapRef<typeof import('./core/utils/src/vendors')['useSupported']>
|
|
2513
|
-
readonly useSwipe: UnwrapRef<typeof import('./core/utils/src/vendors')['useSwipe']>
|
|
2514
|
-
readonly useTemplateRefsList: UnwrapRef<typeof import('./core/utils/src/vendors')['useTemplateRefsList']>
|
|
2515
|
-
readonly useTextDirection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextDirection']>
|
|
2516
|
-
readonly useTextSelection: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextSelection']>
|
|
2517
|
-
readonly useTextareaAutosize: UnwrapRef<typeof import('./core/utils/src/vendors')['useTextareaAutosize']>
|
|
2518
|
-
readonly useThrottledRefHistory: UnwrapRef<typeof import('./core/utils/src/vendors')['useThrottledRefHistory']>
|
|
2519
|
-
readonly useTimeAgo: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeAgo']>
|
|
2520
|
-
readonly useTimeoutPoll: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimeoutPoll']>
|
|
2521
|
-
readonly useTimestamp: UnwrapRef<typeof import('./core/utils/src/vendors')['useTimestamp']>
|
|
2522
|
-
readonly useTitle: UnwrapRef<typeof import('./core/utils/src/vendors')['useTitle']>
|
|
2523
|
-
readonly useToggle: UnwrapRef<typeof import('./core/utils/src/vendors')['useToggle']>
|
|
2524
|
-
readonly useTransition: UnwrapRef<typeof import('./core/utils/src/vendors')['useTransition']>
|
|
2525
|
-
readonly useTrunc: UnwrapRef<typeof import('./core/utils/src/math')['useTrunc']>
|
|
2526
|
-
readonly useUrlSearchParams: UnwrapRef<typeof import('./core/utils/src/vendors')['useUrlSearchParams']>
|
|
2527
|
-
readonly useUserMedia: UnwrapRef<typeof import('./core/utils/src/vendors')['useUserMedia']>
|
|
2528
|
-
readonly useVModel: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModel']>
|
|
2529
|
-
readonly useVModels: UnwrapRef<typeof import('./core/utils/src/vendors')['useVModels']>
|
|
2530
|
-
readonly useVibrate: UnwrapRef<typeof import('./core/utils/src/vendors')['useVibrate']>
|
|
2531
|
-
readonly useVirtualList: UnwrapRef<typeof import('./core/utils/src/vendors')['useVirtualList']>
|
|
2532
|
-
readonly useWakeLock: UnwrapRef<typeof import('./core/utils/src/vendors')['useWakeLock']>
|
|
2533
|
-
readonly useWebNotification: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebNotification']>
|
|
2534
|
-
readonly useWebSocket: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebSocket']>
|
|
2535
|
-
readonly useWebWorker: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorker']>
|
|
2536
|
-
readonly useWebWorkerFn: UnwrapRef<typeof import('./core/utils/src/vendors')['useWebWorkerFn']>
|
|
2537
|
-
readonly useWindowFocus: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowFocus']>
|
|
2538
|
-
readonly useWindowScroll: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowScroll']>
|
|
2539
|
-
readonly useWindowSize: UnwrapRef<typeof import('./core/utils/src/vendors')['useWindowSize']>
|
|
2540
|
-
readonly utilsPath: UnwrapRef<typeof import('./core/path/src/index')['utilsPath']>
|
|
2541
|
-
readonly validate: UnwrapRef<typeof import('./core/validation/src/validate')['validate']>
|
|
2542
|
-
readonly validateUsername: UnwrapRef<typeof import('./core/validation/src/is')['validateUsername']>
|
|
2543
|
-
readonly validationPath: UnwrapRef<typeof import('./core/path/src/index')['validationPath']>
|
|
2544
|
-
readonly validator: UnwrapRef<typeof import('./core/validation/src/validate')['validator']>
|
|
2545
|
-
readonly verifyHash: UnwrapRef<typeof import('./core/security/src/hash')['verifyHash']>
|
|
2546
|
-
readonly vi: UnwrapRef<typeof import('vitest')['vi']>
|
|
2547
|
-
readonly vitest: UnwrapRef<typeof import('vitest')['vitest']>
|
|
2548
|
-
readonly watch: UnwrapRef<typeof import('vue')['watch']>
|
|
2549
|
-
readonly watchArray: UnwrapRef<typeof import('./core/utils/src/vendors')['watchArray']>
|
|
2550
|
-
readonly watchAtMost: UnwrapRef<typeof import('./core/utils/src/vendors')['watchAtMost']>
|
|
2551
|
-
readonly watchDebounced: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDebounced']>
|
|
2552
|
-
readonly watchDeep: UnwrapRef<typeof import('./core/utils/src/vendors')['watchDeep']>
|
|
2553
|
-
readonly watchEffect: UnwrapRef<typeof import('vue')['watchEffect']>
|
|
2554
|
-
readonly watchIgnorable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchIgnorable']>
|
|
2555
|
-
readonly watchImmediate: UnwrapRef<typeof import('./core/utils/src/vendors')['watchImmediate']>
|
|
2556
|
-
readonly watchOnce: UnwrapRef<typeof import('./core/utils/src/vendors')['watchOnce']>
|
|
2557
|
-
readonly watchPausable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchPausable']>
|
|
2558
|
-
readonly watchPostEffect: UnwrapRef<typeof import('vue')['watchPostEffect']>
|
|
2559
|
-
readonly watchSyncEffect: UnwrapRef<typeof import('vue')['watchSyncEffect']>
|
|
2560
|
-
readonly watchThrottled: UnwrapRef<typeof import('./core/utils/src/vendors')['watchThrottled']>
|
|
2561
|
-
readonly watchTriggerable: UnwrapRef<typeof import('./core/utils/src/vendors')['watchTriggerable']>
|
|
2562
|
-
readonly watchWithFilter: UnwrapRef<typeof import('./core/utils/src/vendors')['watchWithFilter']>
|
|
2563
|
-
readonly whenever: UnwrapRef<typeof import('./core/utils/src/vendors')['whenever']>
|
|
2564
|
-
readonly white: UnwrapRef<typeof import('./core/cli/src/utilities')['white']>
|
|
2565
|
-
readonly wipRealtime: UnwrapRef<typeof import('./core/realtime/src/index')['wipRealtime']>
|
|
2566
|
-
readonly wipSlug: UnwrapRef<typeof import('./core/slug/src/index')['wipSlug']>
|
|
2567
|
-
readonly writeJsonFile: UnwrapRef<typeof import('./core/storage/src/index')['writeJsonFile']>
|
|
2568
|
-
readonly writeTextFile: UnwrapRef<typeof import('./core/storage/src/index')['writeTextFile']>
|
|
2569
|
-
readonly xRayPath: UnwrapRef<typeof import('./core/path/src/index')['xRayPath']>
|
|
2570
|
-
readonly yellow: UnwrapRef<typeof import('./core/cli/src/utilities')['yellow']>
|
|
2571
|
-
}
|
|
2572
|
-
}
|