typed-config-plugins 0.5.4 → 0.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/plugin.d.ts +1 -1
- package/package.json +1 -1
package/dist/plugin.d.ts
CHANGED
|
@@ -354,7 +354,7 @@ import * as _adyen_react_native_plugin_build_withAdyen from '@adyen/react-native
|
|
|
354
354
|
|
|
355
355
|
type ExpoConfig = any;
|
|
356
356
|
type ConfigPlugin<Props = void> = (config: ExpoConfig, props: Props) => ExpoConfig;
|
|
357
|
-
type ConfigPluginOptions<T> = T extends ConfigPlugin<infer TOptions> ? Exclude<TOptions, void | undefined> :
|
|
357
|
+
type ConfigPluginOptions<T> = T extends ConfigPlugin<infer TOptions> ? Exclude<TOptions, void | undefined> : any;
|
|
358
358
|
|
|
359
359
|
interface ThirdPartyAutomatedPlugins {
|
|
360
360
|
"@adyen/react-native": ConfigPluginOptions<typeof _adyen_react_native_plugin_build_withAdyen["default"]>;
|