rn-call-logs
Version:
React native package for reading call logs(Android)
34 lines (31 loc) • 1.07 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getNotConnectedLogs = exports.getByNumber = exports.getExternallyAnsweredLogs = exports.getBlockedLogs = exports.getRejectedLogs = exports.getMissedLogs = exports.getIncomingLogs = exports.getOutgoingLogs = exports.getAllLogs = void 0;
var _reactNative = require("react-native");
const {
RnCallLogs
} = _reactNative.NativeModules;
const RNCallLog = RnCallLogs;
const {
getAllLogs,
getOutgoingLogs,
getIncomingLogs,
getMissedLogs,
getRejectedLogs,
getBlockedLogs,
getExternallyAnsweredLogs,
getByNumber,
getNotConnectedLogs
} = RNCallLog;
exports.getNotConnectedLogs = getNotConnectedLogs;
exports.getByNumber = getByNumber;
exports.getExternallyAnsweredLogs = getExternallyAnsweredLogs;
exports.getBlockedLogs = getBlockedLogs;
exports.getRejectedLogs = getRejectedLogs;
exports.getMissedLogs = getMissedLogs;
exports.getIncomingLogs = getIncomingLogs;
exports.getOutgoingLogs = getOutgoingLogs;
exports.getAllLogs = getAllLogs;
//# sourceMappingURL=index.js.map