UNPKG

element-book

Version:

An [`element-vir`](https://npmjs.com/package/element-vir) drop-in element for building, testing, and demonstrating a collection of elements (or, in other words, a design system).

13 lines (12 loc) 345 B
import { type Overwrite } from '@augment-vir/common'; import { type BaseBookEntry } from './base-book-entry.js'; import { type BookEntryType } from './book-entry-type.js'; /** * The root of a book tree. * * @category Internal */ export type BookRoot = Overwrite<BaseBookEntry, { entryType: BookEntryType.Root; parent: undefined; }>;