1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const LogBox = {
4    install() {
5        // Do nothing.
6    },
7    uninstall() {
8        // Do nothing.
9    },
10    isInstalled() {
11        return false;
12    },
13    ignoreLogs(patterns) {
14        // Do nothing.
15    },
16    ignoreAllLogs(value) {
17        // Do nothing.
18    },
19    clearAllLogs() {
20        // Do nothing.
21    },
22    addLog(log) {
23        // Do nothing.
24    },
25    addException(ex) {
26        // Do nothing.
27    },
28};
29exports.default = LogBox;
30//# sourceMappingURL=LogBox.js.map