89aeee8a67298150e3b1d59876db223500dda38f3a849850e5f6f70823ba62eef7a6f9666542bfe94e76ded887cc2671073e9edaf1025a0cae3f633ea78564 433 B

12345678910111213
  1. import Vue from 'vue'
  2. /** ElementUI component common definition */
  3. export declare class ElementUIComponent extends Vue {
  4. /** Install component into Vue */
  5. static install (vue: typeof Vue): void
  6. }
  7. /** Component size definition for button, input, etc */
  8. export type ElementUIComponentSize = 'large' | 'medium' | 'small' | 'mini'
  9. /** Horizontal alignment */
  10. export type ElementUIHorizontalAlignment = 'left' | 'center' | 'right'