UNPKG

kui-vue

Version:

A lightweight desktop UI component library suitable for Vue.js 2.

18 lines (13 loc) 406 B
import Vue, { VueConstructor } from "vue"; /** ImageGroup component props */ export interface ImageGroupProps { data?: any[]; } /** ImageGroup component instance */ export interface ImageGroup extends Vue { $props: ImageGroupProps; $emit(event: string, ...args: any[]): void; } /** ImageGroup Vue component type */ declare const ImageGroup: VueConstructor<ImageGroup>; export default ImageGroup;