fix(react-native): add missing properties to type Rationale

Add missing types as documented here: https://facebook.github.io/react-native/docs/permissionsandroid
This commit is contained in:
Laurin Quast
2019-02-18 11:54:11 +01:00
committed by GitHub
parent 8a8fe2ba56
commit 7be1cdad6d

View File

@@ -7662,6 +7662,9 @@ export interface PanResponderStatic {
export interface Rationale {
title: string;
message: string;
buttonPositive: string;
buttonNegative?: string;
buttonNeutral?: string;
}
export type Permission =