1{"version":3,"file":"BadgeModule.native.js","sourceRoot":"","sources":["../src/BadgeModule.native.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,mBAAmB,CAAC;AAIvD,eAAe;IACb,GAAG,kBAAkB,CAAC,eAAe;IACrC,0CAA0C;IAC1C,4CAA4C;IAC5C,uBAAuB;IACvB,kBAAkB,EAAE,KAAK,EAAE,UAAU,EAAE,OAAO,EAAE,EAAE;QAChD,OAAO,MAAM,kBAAkB,CAAC,eAAe,CAAC,kBAAkB,CAAC,UAAU,CAAC,CAAC;IACjF,CAAC;CACa,CAAC","sourcesContent":["import { NativeModulesProxy } from 'expo-modules-core';\n\nimport { BadgeModule } from './BadgeModule.types';\n\nexport default {\n  ...NativeModulesProxy.ExpoBadgeModule,\n  // We overwrite setBadgeCountAsync to omit\n  // an obsolete options argument when calling\n  // the native function.\n  setBadgeCountAsync: async (badgeCount, options) => {\n    return await NativeModulesProxy.ExpoBadgeModule.setBadgeCountAsync(badgeCount);\n  },\n} as BadgeModule;\n"]}