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.

string_decoder.d.ts 238B

123456789
  1. declare module "string_decoder" {
  2. interface NodeStringDecoder {
  3. write(buffer: Buffer): string;
  4. end(buffer?: Buffer): string;
  5. }
  6. const StringDecoder: {
  7. new(encoding?: string): NodeStringDecoder;
  8. };
  9. }