init
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
export interface PaginationResult<R> extends Array<R> {
|
||||
next(): Promise<PaginationResult<R>>;
|
||||
|
||||
// The total number of results available or null if unknown
|
||||
totalResults: null | number;
|
||||
|
||||
done: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user