UNPKG

duoyun-ui

Version:

A lightweight desktop UI component library, implemented using Gem

12 lines (11 loc) 428 B
import type { HTMLAttributes } from "svelte/elements"; import { DuoyunMoreSlotElement } from '../elements/more'; export * from '../elements/more'; interface DyMoreSlotProps extends HTMLAttributes<HTMLElement> { 'on:change'?: (event: CustomEvent<Parameters<DuoyunMoreSlotElement['change']>[0]>) => void; } declare module "svelte/elements" { interface SvelteHTMLElements { 'dy-more-slot': DyMoreSlotProps; } }