UNPKG

@shopware-ag/meteor-component-library

Version:

The meteor component library is a Vue component library developed by Shopware. It is based on the [Meteor Design System](https://shopware.design/).

9 lines (7 loc) 279 B
import type { ComputedRef } from "vue"; export interface RadioGroupContext { selectedValue: ComputedRef<string | number | boolean | null | undefined>; selectOption: (value: string | number | boolean) => void; disabled: ComputedRef<boolean>; name: ComputedRef<string>; }