X-Git-Url: https://git.josue.xyz/?p=VSoRC%2F.git;a=blobdiff_plain;f=node_modules%2Fnode-pty%2Fsrc%2Ftypes.ts;fp=node_modules%2Fnode-pty%2Fsrc%2Ftypes.ts;h=0000000000000000000000000000000000000000;hp=94c2ac747baa8d7c8d30708b5ae20fc866c1c3c3;hb=5e96dd57ddd883604e87f62bdddcb111c63a6e1a;hpb=acb5f682a2b75b972710cabd81658f63071324b0 diff --git a/node_modules/node-pty/src/types.ts b/node_modules/node-pty/src/types.ts deleted file mode 100644 index 94c2ac7..0000000 --- a/node_modules/node-pty/src/types.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * 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; -}