UNPKG

@aotearoan/neon

Version:

Neon is a lightweight design library of Vue 3 components with minimal dependencies.

10 lines (9 loc) 180 B
/** * Interface for objects that have a selectable state. */ export interface NeonSelectable { /** * The selected state of the object. */ selected?: boolean; }