jiku-ui
Version:
A Component Library for Vue.js.
14 lines (10 loc) • 429 B
TypeScript
import Vue from 'vue'
/** HeinerUI component common definition */
export declare class HeinerUIComponent extends Vue {
/** Install component into Vue */
static install (vue: typeof Vue): void
}
/** Component size definition for button, input, etc */
export type HeinerUIComponentSize = 'large' | 'medium' | 'small' | 'mini'
/** Horizontal alignment */
export type HeinerUIHorizontalAlignment = 'left' | 'center' | 'right'