8 lines
300 B
TypeScript
8 lines
300 B
TypeScript
export declare class PlatformBrowser {
|
|
private textEncoder;
|
|
fetch(path: string, init?: RequestInit): Promise<Response>;
|
|
now(): number;
|
|
encode(text: string, encoding: string): Uint8Array;
|
|
decode(bytes: Uint8Array, encoding: string): string;
|
|
}
|
|
//# sourceMappingURL=Platform.d.ts.map
|