Files
AFFiNE-Mirror/packages/env/src/page-info.ts
2023-06-30 05:40:00 +00:00

8 lines
151 B
TypeScript

export type PageInfo = {
isEdgeless: boolean;
title: string;
id: string;
};
export type GetPageInfoById = (id: string) => PageInfo | undefined;