UNPKG

fluent-svelte-updated

Version:

Forked from https://github.com/vegardlarsen/fluent-svelte. A faithful implementation of Microsoft's Fluent Design System in Svelte.

27 lines (26 loc) 981 B
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const ProgressBar: $$__sveltets_2_IsomorphicComponent<{ [x: string]: any; value?: number; class?: string; element?: SVGElement; railElement?: SVGRectElement; trackElement?: SVGRectElement; secondaryTrackElement?: SVGRectElement; }, { [evt: string]: CustomEvent<any>; }, {}, {}, string>; type ProgressBar = InstanceType<typeof ProgressBar>; export default ProgressBar;