1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-22 19:44:21 +00:00

🐛 Make FormSelectProps and FormMultiselectProps extend BluelibProps

This commit is contained in:
Steffo 2021-10-12 04:55:00 +02:00
parent cff5b237fa
commit 184337a519
Signed by: steffo
GPG key ID: 6965406171929D01
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ export interface FormMultiselectOptions<T> {
}
export interface FormMultiselectProps<T> {
export interface FormMultiselectProps<T> extends Types.BluelibProps {
label: string,
validity?: Types.Validity,

View file

@ -14,7 +14,7 @@ export interface FormSelectOptions<T> {
}
export interface FormSelectProps<T> {
export interface FormSelectProps<T> extends Types.BluelibProps {
label: string,
validity?: Types.Validity,