1 | export function decode(input: string): string;
|
2 | export function encode(input: string): string;
|
3 | export function toUnicode(input: string): string;
|
4 | export function toASCII(input: string): string;
|
5 |
|
6 | export namespace ucs2 {
|
7 | function decode(string: string): number[];
|
8 | function encode(array: readonly number[]): string;
|
9 | }
|
10 |
|
11 | export const version: string;
|