File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 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" | "
8282export type Fetch = ( input : RequestInfo , init ?: FetchOptions ) => Promise < Response > ;
8383export type GetRosettaEnvByKey = ( key : string ) => string | undefined ;
8484export type WaitForCapacity = ( queue : WaitingRoomQueue ) => Promise < void > ;
85+ export type GetUserCredit = ( ) => Promise < number > ;
8586export type RegisterIframeMessageListener = ( eventtype : string , listener : ( event : any , iframe : HTMLIFrameElement ) => void ) => void ;
8687
8788export interface WhoamiV1 {
@@ -272,6 +273,10 @@ export interface WaitingRoomV1 {
272273 waitForCapacity : WaitForCapacity ;
273274}
274275
276+ export interface WalletV1 {
277+ getUserCredit : GetUserCredit ;
278+ }
279+
275280export type ILayer = "privacy" | "reject" ;
276281export type IApp = "offerpage" | "checkout" | "cancellation" ;
277282export type ITenant = "welt" | "bild" ;
You can’t perform that action at this time.
0 commit comments