add specific RN console properties

add the following properties to the console global object
* console.disableYellowBox
* console.ignoredYellowBox
See http://facebook.github.io/react-native/releases/0.48/docs/debugging.html#warnings
This commit is contained in:
Mathieu Dutour
2017-09-17 17:29:01 +02:00
committed by GitHub
parent d537c6b050
commit d644aafab0

View File

@@ -9248,6 +9248,8 @@ declare global {
trace(message?: any, ...optionalParams: any[]): void
debug(message?: any, ...optionalParams: any[]): void
table(...data: any[]): void;
disableYellowBox: boolean;
ignoredYellowBox: string[];
}
var console: Console