UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

12 lines (11 loc) 422 B
import { InjectionKey } from 'vue'; import { Size, Status } from '../_utils/constant'; import { ButtonTypes } from './constants'; export interface ButtonGroupContext { size: Size | undefined; status: Status | undefined; type: ButtonTypes | undefined; disabled: boolean; shape: 'square' | 'round' | 'circle' | undefined; } export declare const buttonGroupInjectionKey: InjectionKey<ButtonGroupContext>;