UNPKG

bootstrap-vue-next

Version:

BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.

8 lines (7 loc) 309 B
export type RadioValue = boolean | string | readonly unknown[] | Readonly<Record<string, unknown>> | number | null; export type RadioOption = { text: string; value: RadioValue; disabled?: boolean; }; export type RadioOptionRaw = string | number | (Partial<RadioOption> & Record<string, unknown>);