Type alias ArboretumPageT

ArboretumPageT: ArboretumPageBaseT & {
    ancestors?: Omit<ArboretumPageT, "children" | "ancestors">[];
    children?: ArboretumPageNodeT[];
    slug: string;
    totalDirectChildrenCount: number;
    type: "page";
}

Type declaration

  • Optional ancestors?: Omit<ArboretumPageT, "children" | "ancestors">[]
  • Optional children?: ArboretumPageNodeT[]
  • slug: string
  • totalDirectChildrenCount: number
  • type: "page"

Generated using TypeDoc