import type { NativeEventEmitter } from 'react-native'; import { fallbackOfficeModule } from './fallbackOfficeModule'; import type { OfficeThemingModule } from './officeThemingModule'; /** * implementations for react-native-web, where the native module will not exist. In this case just use the full fallback implementation */ export function getThemingModule(): [OfficeThemingModule, NativeEventEmitter | undefined] { return [fallbackOfficeModule, undefined]; }