UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

11 lines (10 loc) 309 B
import type { FormValue } from '@inkline/inkline/types/validation'; import type { Renderable } from '@inkline/inkline/types/render'; export interface FormOption { id: string | number; label?: Renderable; value?: FormValue; disabled?: boolean; readonly?: boolean; [key: string]: any; }