1082815dcSEvan Baconimport { ModPlatform } from '../Plugin.types'; 2082815dcSEvan Bacon/** 3082815dcSEvan Bacon * Log a warning that doesn't disrupt the spinners. 4082815dcSEvan Bacon * 5082815dcSEvan Bacon * ```sh 6082815dcSEvan Bacon * » android: android.package: property is invalid https://expo.fyi/android-package 7082815dcSEvan Bacon * ``` 8082815dcSEvan Bacon * 9082815dcSEvan Bacon * @param property Name of the config property that triggered the warning (best-effort) 10082815dcSEvan Bacon * @param text Main warning message 11082815dcSEvan Bacon * @param link Useful link to resources related to the warning 12082815dcSEvan Bacon */ 13082815dcSEvan Baconexport declare function addWarningAndroid(property: string, text: string, link?: string): void; 14082815dcSEvan Bacon/** 15082815dcSEvan Bacon * Log a warning that doesn't disrupt the spinners. 16082815dcSEvan Bacon * 17082815dcSEvan Bacon * ```sh 18082815dcSEvan Bacon * » ios: ios.bundleIdentifier: property is invalid https://expo.fyi/bundle-identifier 19082815dcSEvan Bacon * ``` 20082815dcSEvan Bacon * 21082815dcSEvan Bacon * @param property Name of the config property that triggered the warning (best-effort) 22082815dcSEvan Bacon * @param text Main warning message 23082815dcSEvan Bacon * @param link Useful link to resources related to the warning 24082815dcSEvan Bacon */ 25082815dcSEvan Baconexport declare function addWarningIOS(property: string, text: string, link?: string): void; 26*edc75823SEvan Baconexport declare function addWarningForPlatform(platform: ModPlatform & string, property: string, text: string, link?: string): void; 27