UNPKG

duoyun-ui

Version:

A lightweight desktop UI component library, implemented using Gem

15 lines (14 loc) 594 B
import type { HTMLAttributes } from "svelte/elements"; import { DuoyunChartZoomElement } from '../elements/chart-zoom'; export * from '../elements/chart-zoom'; interface DyChartZoomProps extends HTMLAttributes<HTMLElement> { values?: DuoyunChartZoomElement['values']; value?: DuoyunChartZoomElement['value']; aspectRatio?: DuoyunChartZoomElement['aspectRatio']; 'on:change'?: (event: CustomEvent<Parameters<DuoyunChartZoomElement['change']>[0]>) => void; } declare module "svelte/elements" { interface SvelteHTMLElements { 'dy-chart-zoom': DyChartZoomProps; } }