page-node.ts 141 B

1234567
  1. import type { IPageHasId } from '@growi/core';
  2. export type PageNode = {
  3. pagePath: string;
  4. children: PageNode[];
  5. page?: IPageHasId;
  6. };