UNPKG

@aotearoan/neon

Version:

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

10 lines (9 loc) 171 B
/** * Interface for objects that have a string ID. */ export interface NeonIdentifiable { /** * The unique identifier for the object. */ id: string; }