UNPKG

astro-feelback

Version:

Use Feelback service within your Astro website

8 lines (7 loc) 256 B
export type FeelbackValueDefinition<T extends string | number | object = string> = Readonly<{ value: T; icon?: FeelbackValueIcon; title?: string; description?: string; }>; export type FeelbackValueIcon = string | readonly [string, string];