Home
last modified time | relevance | path

Searched refs:OptionalPromise (Results 1 – 6 of 6) sorted by relevance

/expo/packages/@expo/config-plugins/build/plugins/
H A Dandroid-plugins.d.ts3 type OptionalPromise<T> = T | Promise<T>; alias
4 type MutateDataAction<T> = (expo: ExportedConfigWithProps<T>, data: T) => OptionalPromise<T>;
H A Dandroid-plugins.js.map1 …d';\n\ntype OptionalPromise<T> = T | Promise<T>;\n\ntype MutateDataAction<T> = (expo: ExportedConf…
/expo/packages/@expo/config-plugins/build/
H A DPlugin.types.d.ts10 type OptionalPromise<T> = Promise<T> | T; alias
72 export type Mod<Props = any> = ((config: ExportedConfigWithProps<Props>) => OptionalPromise<Exporte…
H A DPlugin.types.js.map1OptionalPromise<T> = Promise<T> | T;\n\ntype Plist = JSONObject;\n\nexport interface ModProps<T = …
/expo/packages/@expo/config-plugins/src/
H A DPlugin.types.ts12 type OptionalPromise<T> = Promise<T> | T; alias
97 ) => OptionalPromise<ExportedConfigWithProps<Props>>) & {
/expo/packages/@expo/config-plugins/src/plugins/
H A Dandroid-plugins.ts5 type OptionalPromise<T> = T | Promise<T>; alias
7 type MutateDataAction<T> = (expo: ExportedConfigWithProps<T>, data: T) => OptionalPromise<T>;