kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
20 lines (15 loc) • 423 B
TypeScript
import Vue, { VueConstructor } from "vue";
/** Empty component props */
export interface EmptyProps {
description?: string;
image?: string;
imageStyle?: Record<string, any>;
}
/** Empty component instance */
export interface Empty extends Vue {
$props: EmptyProps;
$emit(event: string, ...args: any[]): void;
}
/** Empty Vue component type */
declare const Empty: VueConstructor<Empty>;
export default Empty;