@sprig-technologies/sprig-bundled 1.0.0-beta → 1.0.0-beta.2

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/index.d.ts CHANGED
@@ -2567,6 +2567,7 @@ interface Config {
2567
2567
  path?: string;
2568
2568
  platform?: Platform;
2569
2569
  previewKey?: string | null;
2570
+ previewLanguage?: string;
2570
2571
  replayNonce?: string;
2571
2572
  replaySettings?: object;
2572
2573
  requireUserIdForTracking: boolean;
@@ -2805,9 +2806,7 @@ declare namespace sprigConfig {
2805
2806
  };
2806
2807
  };
2807
2808
  }
2808
- type ArgumentTypes<F> = F extends (...args: infer A) => unknown
2809
- ? A
2810
- : never;
2809
+ type ArgumentTypes<F> = F extends (...args: infer A) => unknown ? A : never;
2811
2810
  type ArgumentType<T> = T extends (arg1: infer U, ...args: unknown[]) => unknown
2812
2811
  ? U
2813
2812
  : unknown;