@snippetify/book-reader-component
Version:
Book Reader Component
12 lines (10 loc) • 321 B
TypeScript
import type { Components, JSX } from "../types/components";
interface BookPage extends Components.BookPage, HTMLElement {}
export const BookPage: {
prototype: BookPage;
new (): BookPage;
};
/**
* Used to define this component and all nested components recursively.
*/
export const defineCustomElement: () => void;