UNPKG

monphind-ui

Version:

A reactive component library built on top of the Web Components API

27 lines (26 loc) 594 B
declare const name = "m-linear-progress"; declare const props: { unknown: boolean; value: number; max: number; }; type Props = typeof props; declare const LinearProgress_base: { new (): { unknown: boolean; value: number; max: number; } & HTMLElement; readonly defineElement: () => void; prototype: HTMLElement; }; export declare class LinearProgress extends LinearProgress_base { } import 'vue'; import { Expand } from "./core/expand"; declare module 'vue' { interface GlobalComponents { [name]: Expand<Props>; } } export {};