mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
8 lines
151 B
TypeScript
8 lines
151 B
TypeScript
export type PageInfo = {
|
|
isEdgeless: boolean;
|
|
title: string;
|
|
id: string;
|
|
};
|
|
|
|
export type GetPageInfoById = (id: string) => PageInfo | undefined;
|