您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

html5-entities.d.ts 359 B

12345678910
  1. export declare class Html5Entities {
  2. decode(str: string): string;
  3. static decode(str: string): string;
  4. encode(str: string): string;
  5. static encode(str: string): string;
  6. encodeNonUTF(str: string): string;
  7. static encodeNonUTF(str: string): string;
  8. encodeNonASCII(str: string): string;
  9. static encodeNonASCII(str: string): string;
  10. }