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.

xml-entities.d.ts 357 B

3 vuotta sitten
12345678910
  1. export declare class XmlEntities {
  2. encode(str: string): string;
  3. static encode(str: string): string;
  4. decode(str: string): string;
  5. static decode(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. }