You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
374 B

3 months ago
  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;