Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
export type FlushPending = {
|
||||
resolve: (value: void | PromiseLike<void>) => void;
|
||||
reject: (reason?: any) => void;
|
||||
promise: Promise<void>;
|
||||
};
|
||||
export declare const makeFlushPending: () => {
|
||||
promise: Promise<void>;
|
||||
resolve: (value: void | PromiseLike<void>) => void;
|
||||
reject: (reason?: any) => void;
|
||||
};
|
||||
Reference in New Issue
Block a user