duoyun-ui
Version:
A lightweight desktop UI component library, implemented using Gem
13 lines (12 loc) • 451 B
TypeScript
import type { HTMLAttributes } from "svelte/elements";
import { DuoyunProgressElement } from '../elements/progress';
export * from '../elements/progress';
interface DyProgressProps extends HTMLAttributes<HTMLElement> {
estimate?: DuoyunProgressElement['estimate'];
calculateColor?: DuoyunProgressElement['calculateColor'];
}
declare module "svelte/elements" {
interface SvelteHTMLElements {
'dy-progress': DyProgressProps;
}
}