mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
11 lines
359 B
TypeScript
11 lines
359 B
TypeScript
|
|
export declare class Html5Entities {
|
||
|
|
decode(str: string): string;
|
||
|
|
static decode(str: string): string;
|
||
|
|
encode(str: string): string;
|
||
|
|
static encode(str: string): string;
|
||
|
|
encodeNonUTF(str: string): string;
|
||
|
|
static encodeNonUTF(str: string): string;
|
||
|
|
encodeNonASCII(str: string): string;
|
||
|
|
static encodeNonASCII(str: string): string;
|
||
|
|
}
|