chore: changelog types added
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
export interface ChangelogItem {
|
||||
id: string;
|
||||
title: string;
|
||||
date: string;
|
||||
summary: string;
|
||||
description: any;
|
||||
published: boolean;
|
||||
}
|
||||
|
||||
export interface ChangelogPaginationData {
|
||||
docs: ChangelogItem[];
|
||||
hasNextPage: boolean;
|
||||
hasPrevPage: boolean;
|
||||
limit: number;
|
||||
nextPage: number | null;
|
||||
page: number;
|
||||
pagingCounter: number;
|
||||
prevPage: number | null;
|
||||
totalDocs: number;
|
||||
totalPages: number;
|
||||
}
|
||||
Vendored
+1
@@ -45,3 +45,4 @@ export * from "./utils";
|
||||
export * from "./payment";
|
||||
export * from "./layout";
|
||||
export * from "./analytics";
|
||||
export * from "./changelog";
|
||||
|
||||
Reference in New Issue
Block a user