Add .gitignore to exclude all node packages and lock files
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
export type Skip = {
|
||||
action: 'skip';
|
||||
skipTo: number;
|
||||
};
|
||||
export declare const makeSkip: (skipTo: number) => Skip;
|
||||
export type FetchMoreData = {
|
||||
action: 'fetch-more-data';
|
||||
bytesNeeded: number;
|
||||
};
|
||||
export declare const makeFetchMoreData: (bytesNeeded: number) => FetchMoreData;
|
||||
Reference in New Issue
Block a user