Files
Rocketmc/src/components/types.d.ts
2022-06-17 19:58:01 -07:00

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
}