mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
export type Feedback = {
|
|
variant: 'success' | 'warning' | 'error'
|
|
icon: string
|
|
message: string
|
|
} | null
|
|
|
|
export const formGroupExtras = Symbol('form-group-extras') as InjectionKey<{
|
|
invalid: Ref<boolean>
|
|
describedBy: Ref<string | undefined>
|
|
}>
|