@@ -32,3 +32,7 @@ export type IPage = {
}
export type IPageForItem = Partial<IPage & {isTarget?: boolean} & HasObjectId>;
+
+export type IPageHasId = IPage & {
+ _id: string,
+};