@expo/apple-utils 1.0.0 → 1.2.0
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
|
@@ -537,6 +537,15 @@ declare module "auth/Auth.types" {
|
|
|
537
537
|
autoResolveProvider?: boolean;
|
|
538
538
|
};
|
|
539
539
|
}
|
|
540
|
+
declare module "auth/Hashcash" {
|
|
541
|
+
export function getDateString(): string;
|
|
542
|
+
export function makeHashcash({ bits, challenge, date, }: {
|
|
543
|
+
bits: number;
|
|
544
|
+
challenge: string;
|
|
545
|
+
date?: string;
|
|
546
|
+
}): string;
|
|
547
|
+
export function mostSignificantBitFirst(s: string): string;
|
|
548
|
+
}
|
|
540
549
|
declare module "auth/ServiceKey" {
|
|
541
550
|
export interface ItunesServiceKey {
|
|
542
551
|
authServiceUrl: string;
|