Skip to content

Commit d8f1131

Browse files
author
issayah
committed
Types fixes
1 parent 2bfc591 commit d8f1131

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/types/components/BFormSelect/BFormSelect.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ export interface Props {
1818
selectSize?: number
1919
size?: Size
2020
state?: boolean | null
21+
textField?: string
22+
valueField?: value
23+
modelValue?: string | Array<unknown> | Record<string, unknown> | number
2124
}
2225
// Emits
2326
export interface Emits {

src/types/components/BFormSelect/BFormSelectOptionGroup.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export interface Props {
33
label?: string
44
disabledField?: string
55
htmlField?: string
6-
options?: Array | Record<string, unknown>
6+
options?: Array<unknown> | Record<string, unknown>
77
textField?: string
88
valueField?: string
99
}

0 commit comments

Comments
 (0)