at main 681 B view raw
1import type { GuestbookSignElement, GuestbookDisplayElement } from "cutebook" 2import type { DetailedHTMLProps, HTMLAttributes } from "react" 3 4declare module "react" { 5 namespace JSX { 6 interface IntrinsicElements { 7 'guestbook-sign': DetailedHTMLProps<HTMLAttributes<HTMLElement> & { 8 did?: string; 9 }, HTMLElement>; 10 'guestbook-display': DetailedHTMLProps<HTMLAttributes<HTMLElement> & { 11 did?: string; 12 limit?: string; 13 ref?: any; 14 }, HTMLElement>; 15 } 16 } 17} 18 19declare global { 20 interface HTMLElementTagNameMap { 21 'guestbook-sign': GuestbookSignElement; 22 'guestbook-display': GuestbookDisplayElement; 23 } 24} 25 26export {} 27