@vectrejs/vectre
Version:
Complete implementation of Spectre.css on Vue 2.x
21 lines (20 loc) • 478 B
TypeScript
import * as tsx from 'vue-tsx-support';
export declare const FormRadioGroup: tsx.TsxComponent<import("vue").default, {} & {
disabled?: boolean;
error?: boolean;
name?: string;
value?: unknown;
size?: "lg" | "sm";
inline?: boolean;
options?: unknown;
}, {}, {}, {
update(value: any): void;
} & {
name: string;
options: unknown;
value: unknown;
size: "lg" | "sm";
inline: boolean;
disabled: boolean;
error: boolean;
}>;