File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ export type WaitingRoomQueue = WaitingRoomQueueDefault | "auth" | "checkout" | "
82
82
export type Fetch = ( input : RequestInfo , init ?: FetchOptions ) => Promise < Response > ;
83
83
export type GetRosettaEnvByKey = ( key : string ) => string | undefined ;
84
84
export type WaitForCapacity = ( queue : WaitingRoomQueue ) => Promise < void > ;
85
+ export type GetUserCredit = ( ) => Promise < number > ;
85
86
export type RegisterIframeMessageListener = ( eventtype : string , listener : ( event : any , iframe : HTMLIFrameElement ) => void ) => void ;
86
87
87
88
export interface WhoamiV1 {
@@ -272,6 +273,10 @@ export interface WaitingRoomV1 {
272
273
waitForCapacity : WaitForCapacity ;
273
274
}
274
275
276
+ export interface WalletV1 {
277
+ getUserCredit : GetUserCredit ;
278
+ }
279
+
275
280
export type ILayer = "privacy" | "reject" ;
276
281
export type IApp = "offerpage" | "checkout" | "cancellation" ;
277
282
export type ITenant = "welt" | "bild" ;
You can’t perform that action at this time.
0 commit comments