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).
15 lines (14 loc) • 463 B
JavaScript
/**
* All possible types for element-book entries.
*
* @category Internal
*/
export var BookEntryType;
(function (BookEntryType) {
/** A single element example. */
BookEntryType["ElementExample"] = "element-example";
/** An individual book page with element examples and/or sub-pages. */
BookEntryType["Page"] = "page";
/** Tree root. Not for external use. */
BookEntryType["Root"] = "root";
})(BookEntryType || (BookEntryType = {}));