decentraland-dapps 13.63.0 → 13.63.1
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.
|
@@ -29,7 +29,10 @@ declare type AllowanceOptions = AuthorizeBaseOptions & {
|
|
|
29
29
|
requiredAllowanceInWei: string;
|
|
30
30
|
};
|
|
31
31
|
export declare type AuthorizeActionOptions = ApprovalOptions | AllowanceOptions;
|
|
32
|
-
|
|
32
|
+
declare type RecursivePartial<T> = {
|
|
33
|
+
[P in keyof T]?: T[P] extends (infer U)[] ? RecursivePartial<U>[] : T[P] extends object ? RecursivePartial<T[P]> : T[P];
|
|
34
|
+
};
|
|
35
|
+
export declare type AuthorizationTranslationKeys = RecursivePartial<typeof en['@dapps']['authorization_modal']>;
|
|
33
36
|
export declare type WithAuthorizedActionProps = {
|
|
34
37
|
onAuthorizedAction: (options: AuthorizeActionOptions) => void;
|
|
35
38
|
onCloseAuthorization: () => void;
|