- 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
57 lines
914 B
TypeScript
57 lines
914 B
TypeScript
import DOMPointReadOnly from './DOMPointReadOnly.js';
|
|
/**
|
|
* DOM Point.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/DOMPoint
|
|
*/
|
|
export default class DOMPoint extends DOMPointReadOnly {
|
|
/**
|
|
* Sets x.
|
|
*
|
|
* @param value X.
|
|
*/
|
|
set x(value: number);
|
|
/**
|
|
* Returns x.
|
|
*
|
|
* @returns X.
|
|
*/
|
|
get x(): number;
|
|
/**
|
|
* Sets y.
|
|
*
|
|
* @param value Y.
|
|
*/
|
|
set y(value: number);
|
|
/**
|
|
* Returns y.
|
|
*
|
|
* @returns Y.
|
|
*/
|
|
get y(): number;
|
|
/**
|
|
* Sets z.
|
|
*
|
|
* @param value Z.
|
|
*/
|
|
set z(value: number);
|
|
/**
|
|
* Returns z.
|
|
*
|
|
* @returns Z.
|
|
*/
|
|
get z(): number;
|
|
/**
|
|
* Sets w.
|
|
*
|
|
* @param value W.
|
|
*/
|
|
set w(value: number);
|
|
/**
|
|
* Returns w.
|
|
*
|
|
* @returns W.
|
|
*/
|
|
get w(): number;
|
|
}
|
|
//# sourceMappingURL=DOMPoint.d.ts.map
|