UNPKG

duoyun-ui

Version:

A lightweight desktop UI component library, implemented using Gem

12 lines (11 loc) 370 B
import type { HTMLAttributes } from "svelte/elements"; import { DuoyunHeadingElement } from '../elements/heading'; export * from '../elements/heading'; interface DyHeadingProps extends HTMLAttributes<HTMLElement> { lv?: DuoyunHeadingElement['lv']; } declare module "svelte/elements" { interface SvelteHTMLElements { 'dy-heading': DyHeadingProps; } }