Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / protobufjs / node_modules / @types / node / string_decoder.d.ts
diff --git a/legacy-libs/protobufjs/node_modules/@types/node/string_decoder.d.ts b/legacy-libs/protobufjs/node_modules/@types/node/string_decoder.d.ts
new file mode 100644 (file)
index 0000000..fe0e0b4
--- /dev/null
@@ -0,0 +1,7 @@
+declare module "string_decoder" {
+    class StringDecoder {
+        constructor(encoding?: string);
+        write(buffer: Buffer): string;
+        end(buffer?: Buffer): string;
+    }
+}