summaryrefslogtreecommitdiff
path: root/src/i18n.d.ts
blob: defc4013acae0254c980676bfc3fbfb1dafd31d9 (plain)
1
2
3
4
5
6
7
8
9
declare module '@/i18n' {
  interface I18nInstance {
    global: {
      t: (key: string, ...args: unknown[]) => string;
    };
  }
  const i18n: I18nInstance;
  export default i18n;
}