- 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
67 lines
1.6 KiB
TypeScript
67 lines
1.6 KiB
TypeScript
import { Buffer } from 'buffer';
|
|
import { ReadableStream } from 'stream/web';
|
|
import * as PropertySymbol from '../PropertySymbol.js';
|
|
/**
|
|
* Reference:
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/Blob.
|
|
*
|
|
* Based on:
|
|
* https://github.com/jsdom/jsdom/blob/master/lib/jsdom/living/file-api/Blob-impl.js (MIT licensed).
|
|
*/
|
|
export default class Blob {
|
|
readonly type: string;
|
|
[PropertySymbol.buffer]: Buffer;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param [bits] Bits.
|
|
* @param [options] Options.
|
|
* @param [options.type] MIME type.
|
|
*/
|
|
constructor(bits?: (ArrayBuffer | ArrayBufferView | Blob | Buffer | string)[], options?: {
|
|
type?: string;
|
|
});
|
|
/**
|
|
* Returns size.
|
|
*
|
|
* @returns Size.
|
|
*/
|
|
get size(): number;
|
|
/**
|
|
* Slices the blob.
|
|
*
|
|
* @param start Start.
|
|
* @param end End.
|
|
* @param contentType Content type.
|
|
* @returns New Blob.
|
|
*/
|
|
slice(start?: number, end?: number, contentType?: string): Blob;
|
|
/**
|
|
* Returns a Promise that resolves to a ArrayBuffer.
|
|
*
|
|
* @returns ArrayBuffer.
|
|
*/
|
|
/**
|
|
*
|
|
*/
|
|
arrayBuffer(): Promise<ArrayBuffer>;
|
|
/**
|
|
* Returns a Promise that resolves to a text.
|
|
*
|
|
* @returns Text.
|
|
*/
|
|
text(): Promise<string>;
|
|
/**
|
|
* Returns returns a ReadableStream which upon reading returns the data contained within the Blob.
|
|
*
|
|
* @returns ReadableStream
|
|
*/
|
|
stream(): ReadableStream;
|
|
/**
|
|
* Returns the object converted to string.
|
|
*
|
|
* @returns String.
|
|
*/
|
|
toString(): string;
|
|
}
|
|
//# sourceMappingURL=Blob.d.ts.map
|