diff --git a/src/index.ts b/src/index.ts index f9f5bdf9..df0fb29f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -23,7 +23,7 @@ export interface FluentVue { formatWithAttrs: (key: string, value?: Record) => TranslationWithAttrs - install: InstallFunction + install: InstallFunction } /** diff --git a/src/types/typesCompat.ts b/src/types/typesCompat.ts index 741d10e9..43694fc5 100644 --- a/src/types/typesCompat.ts +++ b/src/types/typesCompat.ts @@ -23,4 +23,4 @@ export type Vue2 = typeof Vue2Type export type Vue3 = Vue3Type export type Vue = Vue3 | Vue2 -export type InstallFunction = (vue: unknown, options: TOptions) => void +export type InstallFunction = (vue: unknown) => void