UNPKG

kui-vue

Version:

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

16 lines (11 loc) 362 B
import Vue, { VueConstructor } from "vue"; /** loading component props */ export interface loadingProps {} /** loading component instance */ export interface loading extends Vue { $props: loadingProps; $emit(event: string, ...args: any[]): void; } /** loading Vue component type */ declare const loading: VueConstructor<loading>; export default loading;