{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";AAIO,IAAM,0BAA0B,MAAM;AAMtC,IAAM,2BAA2B,MAAM;AAMvC,IAAM,eAAe,MAAM;AAM3B,IAAM,uBAAA,GAA0B,CAAC,MAAA,KAAoC;AAAC","file":"index.mjs","sourcesContent":["/**\n * Check if edge-to-edge is enabled through `react-native-edge-to-edge` library.\n * @returns A `boolean`, `true` on platforms other than Android.\n */\nexport const isEdgeToEdgeFromLibrary = () => true;\n\n/**\n * Check if edge-to-edge is enabled through `edgeToEdgeEnabled` Gradle property.\n * @returns A `boolean`, `true` on platforms other than Android.\n */\nexport const isEdgeToEdgeFromProperty = () => true;\n\n/**\n * Check if edge-to-edge is enabled, either from the library or the Gradle property.\n * @returns A `boolean`, `true` on platforms other than Android.\n */\nexport const isEdgeToEdge = () => true;\n\n/**\n * In __DEV__ mode, warn when given values are ignored due to edge-to-edge being enabled.\n * @param values - A record of named values to check. Only defined values trigger a warning.\n */\nexport const controlEdgeToEdgeValues = (values: Record) => {};\n"]}