mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-19 06:21:46 +01:00
fix(types): improve with strict mode (#1041)
This commit is contained in:
2
src/runtime/types/breadcrumb.d.ts
vendored
2
src/runtime/types/breadcrumb.d.ts
vendored
@@ -4,4 +4,6 @@ export interface BreadcrumbLink extends Link {
|
||||
label: string
|
||||
icon?: string
|
||||
iconClass?: string
|
||||
// FIXME: This is a workaround for `link.to` not being resolved although it extends `NuxtLinkProps`
|
||||
[key: string]: any
|
||||
}
|
||||
|
||||
2
src/runtime/types/form.d.ts
vendored
2
src/runtime/types/form.d.ts
vendored
@@ -31,6 +31,6 @@ export interface InjectedFormGroupValue {
|
||||
inputId: Ref<string | undefined>
|
||||
name: Ref<string>
|
||||
size: Ref<string | number | symbol>
|
||||
error: Ref<string | boolean>
|
||||
error: Ref<string | boolean | undefined>
|
||||
eagerValidation: Ref<boolean>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user