UNPKG

@doku-dev/doku-fragment

Version:

A new Angular UI library that moving away from Bootstrap and built from scratch.

9 lines (8 loc) 233 B
export interface DokuSelectOptionItemRecord { /** * Whether item should be disabled. */ disabled?: boolean; [key: string]: any; } export type DokuSelectOptionItem = string | number | DokuSelectOptionItemRecord;