[react-native-navigation] Make navigator a class

Navigator is exported by rnn and is a class.
cc @egorshulga
This commit is contained in:
Danilo Bürger
2018-02-11 22:50:20 +01:00
committed by GitHub
parent 60f5ee3a3c
commit 33b51aea48

View File

@@ -102,7 +102,7 @@ export interface LightBox {
adjustSoftInput?: 'nothing' | 'pan' | 'resize' | 'unspecified';
}
export interface Navigator {
export class Navigator {
push(params: PushedScreen): void;
pop(params?: { animated?: boolean; animationType?: 'fade' | 'slide-horizontal'; }): void;
popToRoot(params?: { animated?: boolean; animationType?: 'fade' | 'slide-horizontal'; }): void;