forked from didirus/AstralRinth
9 lines
292 B
TypeScript
9 lines
292 B
TypeScript
import type { SvelteComponentDev } from 'svelte/internal'
|
|
|
|
export interface Option {
|
|
label: string
|
|
/** The element that will be in the `value` array while the option is checked */
|
|
value: string | number
|
|
icon?: SvelteComponentDev | string | any // SvelteComponentDev fails to type check
|
|
}
|