UNPKG

kui-vue

Version:

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

19 lines (14 loc) 412 B
import Vue, { VueConstructor } from "vue"; /** TimeLine component props */ export interface TimeLineProps { /** default: left */ mode?: string; } /** TimeLine component instance */ export interface TimeLine extends Vue { $props: TimeLineProps; $emit(event: string, ...args: any[]): void; } /** TimeLine Vue component type */ declare const TimeLine: VueConstructor<TimeLine>; export default TimeLine;