Files
AFFiNE-Mirror/packages/env/src/page-info.ts
T
2023-06-30 16:17:32 +08:00

8 lines
151 B
TypeScript

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