monphind-ui
Version:
A reactive component library built on top of the Web Components API
22 lines (21 loc) • 485 B
TypeScript
declare const name = "m-button";
type Props = {
type: "" | "outlined" | "text" | "filled";
disabled: boolean;
value: string;
};
declare const Button_base: {
new (): Props & HTMLElement;
readonly defineElement: () => void;
prototype: HTMLElement;
};
export declare class Button extends Button_base {
}
import 'vue';
import { Expand } from "./core/expand";
declare module 'vue' {
interface GlobalComponents {
[name]: Expand<Props>;
}
}
export {};