@bolttech/server-side-next
Version:
This library was generated with [Nx](https://nx.dev).
8 lines (7 loc) • 327 B
TypeScript
import { Page, GetPageIdByUrlResponse } from '../types/page.type';
export interface CmsRepositoryInterface {
getPageById(id: string): Promise<Page>;
getPageByReferenceId(id: string): Promise<Page>;
getPageIdByUrl(url: string): Promise<GetPageIdByUrlResponse>;
getPageTime(id: string): Promise<number>;
}