- 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.0 KiB
TypeScript
25 lines
1.0 KiB
TypeScript
import { DynamicBase, type anyOrNever } from "@ark/util";
|
|
import type { BaseRoot } from "./roots/root.ts";
|
|
import type { BaseScope, InternalResolution, InternalResolutions } from "./scope.ts";
|
|
import { arkKind } from "./shared/utils.ts";
|
|
export type PreparsedNodeResolution = {
|
|
[arkKind]: "generic" | "module";
|
|
};
|
|
export declare class RootModule<exports extends {} = {}> extends DynamicBase<exports> {
|
|
get [arkKind](): "module";
|
|
}
|
|
export interface InternalModule<exports extends InternalResolutions = InternalResolutions> extends RootModule<exports> {
|
|
root?: BaseRoot;
|
|
}
|
|
export declare const bindModule: (module: InternalModule, $: BaseScope) => InternalModule;
|
|
type exportSchemaScope<$> = {
|
|
[k in keyof $]: instantiateRoot<$[k]>;
|
|
};
|
|
export type instantiateRoot<t> = t extends InternalResolution ? [
|
|
t
|
|
] extends [anyOrNever] ? BaseRoot : t : BaseRoot;
|
|
export declare const SchemaModule: new <$ = {}>(types: exportSchemaScope<$>) => SchemaModule<$>;
|
|
export interface SchemaModule<$ = {}> extends RootModule<exportSchemaScope<$>> {
|
|
}
|
|
export {};
|