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).
18 lines (17 loc) • 513 B
TypeScript
/**
* Slots to be used on an element-book app instance for inserting custom HTML into the app.
*
* @category Main
*/
export declare enum ElementBookSlotName {
/**
* Used to specify a footer for the main element example viewer. It always appears at the bottom
* of the viewer's scroll area.
*/
Footer = "book-footer",
/**
* Used to specify a header above the navigation sidebar. This is a particularly good place for
* branding.
*/
NavHeader = "book-nav-header"
}