Searched refs:stringFileContentsJSON (Results 1 – 4 of 4) sorted by relevance
| /expo/packages/@expo/config-plugins/build/android/ |
| H A D | Strings.js | 24 function setStringItem(itemToAdd, stringFileContentsJSON) { argument 26 …if (!(stringFileContentsJSON !== null && stringFileContentsJSON !== void 0 && (_stringFileContents… 27 if (!stringFileContentsJSON.resources || typeof stringFileContentsJSON.resources === 'string') { 29 stringFileContentsJSON.resources = {}; 31 stringFileContentsJSON.resources.string = itemToAdd; 32 return stringFileContentsJSON; 40 … stringFileContentsJSON.resources.string = stringFileContentsJSON.resources.string.concat(newItem); 43 return stringFileContentsJSON; 45 function removeStringItem(named, stringFileContentsJSON) { argument 47 …if (stringFileContentsJSON !== null && stringFileContentsJSON !== void 0 && (_stringFileContentsJS… [all …]
|
| H A D | Strings.js.map | 1 …stringFileContentsJSON","_stringFileContentsJS","resources","string","newItem","stringNameExists",…
|
| H A D | Strings.d.ts | 5 export declare function setStringItem(itemToAdd: ResourceItemXML[], stringFileContentsJSON: Resourc… 6 export declare function removeStringItem(named: string, stringFileContentsJSON: ResourceXML): Resou…
|
| /expo/packages/@expo/config-plugins/src/android/ |
| H A D | Strings.ts | 13 stringFileContentsJSON: ResourceXML 15 if (!stringFileContentsJSON?.resources?.string) { 16 if (!stringFileContentsJSON.resources || typeof stringFileContentsJSON.resources === 'string') { 18 stringFileContentsJSON.resources = {}; 20 stringFileContentsJSON.resources.string = itemToAdd; 21 return stringFileContentsJSON; 32 stringFileContentsJSON.resources.string = 33 stringFileContentsJSON.resources.string.concat(newItem); 36 return stringFileContentsJSON; 40 if (stringFileContentsJSON?.resources?.string) { [all …]
|