kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
21 lines (16 loc) • 470 B
TypeScript
import Vue, { VueConstructor } from "vue";
/** InputGroup component props */
export interface InputGroupProps {
block?: boolean;
/** default: true */
compact?: boolean;
size?: string;
}
/** InputGroup component instance */
export interface InputGroup extends Vue {
$props: InputGroupProps;
$emit(event: string, ...args: any[]): void;
}
/** InputGroup Vue component type */
declare const InputGroup: VueConstructor<InputGroup>;
export default InputGroup;