UNPKG

@cnamts/vue-dot

Version:

Implementation of our Design System for the French Health Insurance

18 lines (14 loc) 310 B
import { FileState } from '../../elements/FileList/types'; export interface FileListItem { id: string; title: string; state?: FileState; name?: string; file?: File; optional?: boolean; } export type SelectedFile = Required<FileListItem>; export interface SelectItem { text: string; value: string; }