summaryrefslogtreecommitdiffstats
path: root/src/ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ts')
-rw-r--r--src/ts/types/app.ts1
-rw-r--r--src/ts/types/articles.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/ts/types/app.ts b/src/ts/types/app.ts
index 60dd4b8..a58f710 100644
--- a/src/ts/types/app.ts
+++ b/src/ts/types/app.ts
@@ -101,6 +101,7 @@ export type ProjectMeta = Omit<Meta, 'title'> & {
export type PageInfo = {
endCursor: string;
hasNextPage: boolean;
+ total: number;
};
export type Project = {
diff --git a/src/ts/types/articles.ts b/src/ts/types/articles.ts
index da86e10..88b79dd 100644
--- a/src/ts/types/articles.ts
+++ b/src/ts/types/articles.ts
@@ -24,6 +24,7 @@ export type ArticleMeta = {
author?: ArticleAuthor;
commentCount?: number;
dates?: Dates;
+ results?: number;
topics?: TopicPreview[];
thematics?: ThematicPreview[];
website?: string;