duoyun-ui
Version:
A lightweight desktop UI component library, implemented using Gem
12 lines (11 loc) • 385 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
import { DuoyunTimelineElement } from '../elements/timeline';
export * from '../elements/timeline';
interface DyTimelineProps extends HTMLAttributes<HTMLElement> {
events?: DuoyunTimelineElement['events'];
}
declare module "svelte/elements" {
interface SvelteHTMLElements {
'dy-timeline': DyTimelineProps;
}
}