Skip to content

Commit 55d0593

Browse files
authored
Fix typing error which breaks app.use (#808)
1 parent fdc1fbc commit 55d0593

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface FluentVue {
2323

2424
formatWithAttrs: (key: string, value?: Record<string, FluentVariable>) => TranslationWithAttrs
2525

26-
install: InstallFunction<FluentVueOptions>
26+
install: InstallFunction
2727
}
2828

2929
/**

src/types/typesCompat.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ export type Vue2 = typeof Vue2Type
2323
export type Vue3 = Vue3Type
2424
export type Vue = Vue3 | Vue2
2525

26-
export type InstallFunction<TOptions> = (vue: unknown, options: TOptions) => void
26+
export type InstallFunction = (vue: unknown) => void

0 commit comments

Comments
 (0)