fix: make params required in NavigationSetParamsActionPayload (#6343)

This commit is contained in:
KUBO
2019-09-30 06:36:15 +09:00
parent 541ad54b7e
commit d760da796d

View File

@@ -269,7 +269,7 @@ declare module 'react-navigation' {
key: string;
// The new params to merge into the existing route params
params?: NavigationParams;
params: NavigationParams;
}
export interface NavigationSetParamsAction