Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
372 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | export interface IProcess {
|
---|
| 2 | getuid(): number;
|
---|
| 3 | getgid(): number;
|
---|
| 4 | cwd(): string;
|
---|
| 5 | platform: string;
|
---|
| 6 | nextTick: (callback: (...args: any[]) => void, ...args: any[]) => void;
|
---|
| 7 | emitWarning: (message: string, type: string) => void;
|
---|
| 8 | env: {};
|
---|
| 9 | }
|
---|
| 10 | export declare function createProcess(): IProcess;
|
---|
| 11 | declare const _default: IProcess;
|
---|
| 12 | export default _default;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.