Migrate to a monorepo structure (#2909)
This commit is contained in:
@ -0,0 +1,8 @@
|
||||
import { IEdge } from './edge.interface';
|
||||
import { IPageInfo } from './page-info.interface';
|
||||
|
||||
export interface IConnection<T, CustomEdge extends IEdge<T> = IEdge<T>> {
|
||||
edges: Array<CustomEdge>;
|
||||
pageInfo: IPageInfo;
|
||||
totalCount: number;
|
||||
}
|
||||
Reference in New Issue
Block a user