kui-vue
Version:
A lightweight desktop UI component library suitable for Vue.js 2.
24 lines (19 loc) • 501 B
TypeScript
import Vue, { VueConstructor } from "vue";
/** Space component props */
export interface SpaceProps {
align?: string;
vertical?: boolean;
/** default: false */
wrap?: boolean;
block?: boolean;
compact?: boolean;
size?: string | number | any[];
}
/** Space component instance */
export interface Space extends Vue {
$props: SpaceProps;
$emit(event: string, ...args: any[]): void;
}
/** Space Vue component type */
declare const Space: VueConstructor<Space>;
export default Space;