feat(WEB-209): revalidate my pages navigation on demand

This commit is contained in:
Simon Emanuelsson
2024-04-16 12:42:44 +02:00
committed by Michael Zetterberg
parent 16634abbbf
commit 1bffbc837e
40 changed files with 600 additions and 144 deletions
+5 -1
View File
@@ -1,4 +1,8 @@
export interface AllRequestResponse<T> {
items: T[]
}
export interface AllRequestResponseWithTotal<T> {
items: T[]
total: number
}
}
+4
View File
@@ -4,5 +4,9 @@ export type Node<T> = {
export type Edges<T> = {
edges: Node<T>[]
}
export type EdgesWithTotalCount<T> = {
edges: Node<T>[]
totalCount: number
}
+3
View File
@@ -0,0 +1,3 @@
import type { System } from "../system"
export interface NodeRefs extends System {}