button.d.ts 293 B

1234567
  1. import type { InjectionKey } from 'vue';
  2. import type { ButtonProps } from 'element-plus/es/components/button';
  3. export interface ButtonGroupContext {
  4. size?: ButtonProps['size'];
  5. type?: ButtonProps['type'];
  6. }
  7. export declare const buttonGroupContextKey: InjectionKey<ButtonGroupContext>;