summaryrefslogtreecommitdiff
path: root/std/node/_stream/symbols.ts
diff options
context:
space:
mode:
authorSteven Guerrero <stephenguerrero43@gmail.com>2020-11-21 16:13:18 -0500
committerGitHub <noreply@github.com>2020-11-21 16:13:18 -0500
commita4f27c4d570ad9b47bbd560fbf9b017f852fc29f (patch)
tree84b3b0111fca262932aa2be7f1ef884fc6d5ddc3 /std/node/_stream/symbols.ts
parentce890f2ae7e8b557211e8f529180d30dc44ea7b5 (diff)
feat(std/node): Add Readable Stream / Writable Stream / errors support (#7569)
Diffstat (limited to 'std/node/_stream/symbols.ts')
-rw-r--r--std/node/_stream/symbols.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/std/node/_stream/symbols.ts b/std/node/_stream/symbols.ts
new file mode 100644
index 000000000..addb969d3
--- /dev/null
+++ b/std/node/_stream/symbols.ts
@@ -0,0 +1,4 @@
+// Copyright Node.js contributors. All rights reserved. MIT License.
+export const kConstruct = Symbol("kConstruct");
+export const kDestroy = Symbol("kDestroy");
+export const kPaused = Symbol("kPaused");