utf8.d.ts 123 B

123456
  1. declare const utf8: {
  2. encode(str: string): string;
  3. decode(str: string, safe?: boolean): string;
  4. };
  5. export = utf8;