feat(android): support null object of androidPermissionOptions to avoid request window (#2551)

This commit is contained in:
Symous 2019-10-18 19:44:38 +08:00 committed by Sibelius Seraphini
parent 4705834f08
commit 20e04863c7

4
types/index.d.ts vendored
View File

@ -206,7 +206,7 @@ export interface RNCameraProps {
buttonPositive?: string;
buttonNegative?: string;
buttonNeutral?: string;
};
} | null;
androidRecordAudioPermissionOptions?: {
title: string;
@ -214,7 +214,7 @@ export interface RNCameraProps {
buttonPositive?: string;
buttonNegative?: string;
buttonNeutral?: string;
};
} | null;
// -- IOS ONLY PROPS
defaultVideoQuality?: keyof VideoQuality;