Files
mattermost-mobile/env.d.ts
yasser khan 3cbde1663d E2E feature schedule posts (#8709)
- Fix iOS and Android CI.
- Fixes E2E tests on both platform
- Added tests for scheduled draft feature.
2025-04-23 12:10:37 +05:30

12 lines
347 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
// So that typescript doesn't complain about importing `@env` through react-native-dotenv
declare module '@env' {
export const RUNNING_E2E: string;
}
declare module 'react-native-dotenv' {
export const RUNNING_E2E: string;
}