blob: 16ff9d6004053f469412a1b72945938129de9b6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export const NativeTranslationModule = {
presentAsync: async (_: string) => {},
}
export function NativeTranslationView() {
return null
}
export const isAvailable = false
export function isLanguageSupported(_lang?: string) {
return false
}
|