File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ declare module 'bootstrap-vue' {
25
25
| 'light'
26
26
| 'dark'
27
27
type SortDirection = 'asc' | 'desc' | 'last'
28
- type FormatterCallback = ( ( value : mixed , key : string , item : mixed ) => any )
28
+ type FormatterCallback = ( ( value : any , key : string , item : any ) => any )
29
29
30
30
export interface TableField {
31
31
label ?: string
@@ -37,9 +37,9 @@ declare module 'bootstrap-vue' {
37
37
sortDirection ?: SortDirection
38
38
tdClass ?: string | string [ ] | FormatterCallback
39
39
thClass ?: string | string [ ]
40
- thStyle ?: mixed
40
+ thStyle ?: any
41
41
variant ?: TableVariant | string
42
- tdAttr ?: mixed | ( ( value : mixed , key : string , item : mixed ) => mixed )
42
+ tdAttr ?: any | ( ( value : any , key : string , item : any ) => any )
43
43
isRowHeader ?: boolean
44
44
}
45
45
export interface TableFieldObject {
You can’t perform that action at this time.
0 commit comments