2
0
mirror of synced 2025-02-24 12:08:10 +00:00

14 lines
644 B
TypeScript
Raw Normal View History

2019-07-27 19:02:24 -03:00
import { BytesLike } from "@ethersproject/bytes";
export declare enum UnicodeNormalizationForm {
current = "",
NFC = "NFC",
NFD = "NFD",
NFKC = "NFKC",
NFKD = "NFKD"
}
export declare function toUtf8Bytes(str: string, form?: UnicodeNormalizationForm): Uint8Array;
export declare function _toEscapedUtf8String(bytes: BytesLike, ignoreErrors?: boolean): string;
2019-08-02 02:10:58 -04:00
export declare function _toUtf8String(codePoints: Array<number>): string;
2019-07-27 19:02:24 -03:00
export declare function toUtf8String(bytes: BytesLike, ignoreErrors?: boolean): string;
export declare function toUtf8CodePoints(str: string, form?: UnicodeNormalizationForm): Array<number>;