source: frontend/node_modules/memfs/lib/process.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 374 bytes
Line 
1export 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}
10export declare function createProcess(): IProcess;
11declare const _default: IProcess;
12export default _default;
Note: See TracBrowser for help on using the repository browser.