feat(WEB-209): revalidate my pages navigation on demand
This commit is contained in:
committed by
Michael Zetterberg
parent
16634abbbf
commit
1bffbc837e
@@ -1,4 +1,8 @@
|
||||
export interface AllRequestResponse<T> {
|
||||
items: T[]
|
||||
}
|
||||
|
||||
export interface AllRequestResponseWithTotal<T> {
|
||||
items: T[]
|
||||
total: number
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,5 +4,9 @@ export type Node<T> = {
|
||||
|
||||
export type Edges<T> = {
|
||||
edges: Node<T>[]
|
||||
}
|
||||
|
||||
export type EdgesWithTotalCount<T> = {
|
||||
edges: Node<T>[]
|
||||
totalCount: number
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
import type { System } from "../system"
|
||||
|
||||
export interface NodeRefs extends System {}
|
||||
Reference in New Issue
Block a user