1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 | export const fromCharCode: (...codes: number[]) => string;
|
7 | export const fromCodePoint: (...codePoints: number[]) => string;
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export const MAX_UTF16_CHARACTER: string;
|
13 | export function trimLeft(s: string): string;
|
14 | export function fromCamelCase(s: string, separator: string): string;
|
15 | export function utf8ByteLength(str: string): number;
|
16 | export function _encodeUtf8Polyfill(str: string): Uint8Array;
|
17 | export const utf8TextEncoder: TextEncoder;
|
18 | export function _encodeUtf8Native(str: string): Uint8Array;
|
19 | export function encodeUtf8(str: string): Uint8Array;
|
20 | export function _decodeUtf8Polyfill(buf: Uint8Array): string;
|
21 | export let utf8TextDecoder: TextDecoder | null;
|
22 | export function _decodeUtf8Native(buf: Uint8Array): string;
|
23 | export function decodeUtf8(buf: Uint8Array): string;
|
24 | export function splice(str: string, index: number, remove: number, insert?: string): string;
|
25 | export function repeat(source: string, n: number): string;
|
26 |
|
\ | No newline at end of file |