web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
359 B

  1. export declare class Html4Entities {
  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. }