- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
25 lines
1.9 KiB
TypeScript
25 lines
1.9 KiB
TypeScript
export declare const intrinsic: {
|
|
emptyStructure: import("./index.ts").StructureNode;
|
|
jsonPrimitive: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
jsonObject: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
jsonData: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
integer: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
lengthBoundable: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
key: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
nonNegativeIntegerString: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
string: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
number: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
bigint: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
boolean: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
symbol: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
undefined: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
object: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
null: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
Array: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
Date: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
false: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
never: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
true: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
unknown: import("./index.ts").BaseRoot<import("./index.ts").InternalRootDeclaration>;
|
|
};
|