- 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
24 lines
921 B
TypeScript
24 lines
921 B
TypeScript
/**
|
|
* Base64 encoding and decoding.
|
|
*/
|
|
export default class Base64 {
|
|
/**
|
|
* Creates a Base64-encoded ASCII string from a binary string (i.e., a string in which each character in the string is treated as a byte of binary data).
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/btoa
|
|
* @param data Binay data.
|
|
* @returns Base64-encoded string.
|
|
*/
|
|
static btoa(data: unknown): string;
|
|
/**
|
|
* Decodes a string of data which has been encoded using Base64 encoding.
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/atob
|
|
* @see https://infra.spec.whatwg.org/#forgiving-base64-encode.
|
|
* @see Https://html.spec.whatwg.org/multipage/webappapis.html#btoa.
|
|
* @param data Binay string.
|
|
* @returns An ASCII string containing decoded data from encodedData.
|
|
*/
|
|
static atob(data: unknown): string;
|
|
}
|
|
//# sourceMappingURL=Base64.d.ts.map
|