installed pty
[VSoRC/.git] / node_modules / node-pty / src / types.ts
diff --git a/node_modules/node-pty/src/types.ts b/node_modules/node-pty/src/types.ts
new file mode 100644 (file)
index 0000000..94c2ac7
--- /dev/null
@@ -0,0 +1,15 @@
+/**
+ * Copyright (c) 2017, Daniel Imms (MIT License).
+ * Copyright (c) 2018, Microsoft Corporation (MIT License).
+ */
+
+export type ArgvOrCommandLine = string[] | string;
+
+export interface IExitEvent {
+  exitCode: number;
+  signal: number | undefined;
+}
+
+export interface IDisposable {
+  dispose(): void;
+}