node-red/packages/node_modules/@node-red/editor-client/src/types/node/string_decoder.d.ts

11 lines
328 B
TypeScript
Raw Normal View History

2021-09-29 18:17:34 +02:00
2021-09-29 18:28:06 +02:00
/* NOTE: Do not edit directly! This file is generated using `npm run update-types` in https://github.com/node-red/nr-monaco-build */
2021-09-29 18:17:34 +02:00
declare module 'string_decoder' {
class StringDecoder {
constructor(encoding?: BufferEncoding);
write(buffer: Buffer): string;
end(buffer?: Buffer): string;
}
}