@expo/apple-utils 2.0.1 → 2.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expo/apple-utils",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "main": "build",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -557,7 +557,9 @@ declare module "auth/Hashcash" {
557
557
  export function mostSignificantBitFirst(s: string): string;
558
558
  }
559
559
  declare module "auth/RemoteSecurePassword" {
560
- import { Srp, Client as SrpClient } from '@foxt/js-srp';
560
+ const Srp: any;
561
+ type Srp = any;
562
+ type SrpClient = any;
561
563
  export type AppleSrpClient = Awaited<ReturnType<typeof createAppleSrpClientAsync>>;
562
564
  type AppleSrpClientOptions = {
563
565
  username: string;