Files
hoppscotch/packages/hoppscotch-sh-admin/src/composables/i18n.ts
2023-06-16 09:47:00 +05:30

7 lines
173 B
TypeScript

import { flow } from "fp-ts/function"
import { useI18n as _useI18n } from "vue-i18n"
export const useI18n = flow(_useI18n, (x) => x.t)
export const useFullI18n = _useI18n