UNPKG

igniteui-webcomponents

Version:

Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.

14 lines (13 loc) 611 B
import type IgcRadioComponent from './radio.js'; type RadioQueryResult = { /** Radio components under the same group name */ radios: IgcRadioComponent[]; /** Radio components under the same group name that are not disabled */ active: IgcRadioComponent[]; /** Radio components under the same group name sans the radio member passed in `getGroup` */ siblings: IgcRadioComponent[]; /** Radio components under the same group name that are marked as checked */ checked: IgcRadioComponent[]; }; export declare function getGroup(member: IgcRadioComponent): RadioQueryResult; export {};