7 lines
129 B
TypeScript
7 lines
129 B
TypeScript
export interface IPageInfo {
|
|
hasNextPage: boolean;
|
|
hasPreviousPage: boolean;
|
|
startCursor?: string;
|
|
endCursor?: string;
|
|
}
|