installed pty
[VSoRC/.git] / node_modules / node-pty / src / types.ts
1 /**
2  * Copyright (c) 2017, Daniel Imms (MIT License).
3  * Copyright (c) 2018, Microsoft Corporation (MIT License).
4  */
5
6 export type ArgvOrCommandLine = string[] | string;
7
8 export interface IExitEvent {
9   exitCode: number;
10   signal: number | undefined;
11 }
12
13 export interface IDisposable {
14   dispose(): void;
15 }