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=94c2ac747baa8d7c8d30708b5ae20fc866c1c3c3;hp=0000000000000000000000000000000000000000;hb=e79e4a5a87f3e84f7c1777f10a954453a69bf540;hpb=4339da12467b75fb8b6ca831f4bf0081c485ed2c diff --git a/node_modules/node-pty/src/types.ts b/node_modules/node-pty/src/types.ts new file mode 100644 index 0000000..94c2ac7 --- /dev/null +++ b/node_modules/node-pty/src/types.ts @@ -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; +}