Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

html4-entities.d.ts 359 B

před 3 roky
12345678910
  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. }