Files
mattermost-mobile/types/screens/navigation.ts
Daniel Espino García f4e6917185 Ensure no unresolved types in the definition files (#6521)
* Ensure no unresolved types in the definition files

* Address feedback and general cleanup

* Move import from @constants/x to @constants where relevant

* Remove unneeded "import as"
2022-08-05 14:36:19 +02:00

10 lines
319 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import type {OptionsTopBarButton} from 'react-native-navigation/lib/src/interfaces/Options';
export type NavButtons = {
leftButtons?: OptionsTopBarButton[];
rightButtons?: OptionsTopBarButton[];
}