@hellocoop/helper-browser
Version:
Hellō helper functions for the browser
18 lines (17 loc) • 436 B
TypeScript
export interface ICreateInviteRequest {
inviter: string;
client_id: string;
initiate_login_uri: string;
return_uri: string;
app_name?: string;
prompt?: string;
role?: string;
tenant?: string;
state?: string;
events_uri?: string;
wallet?: string;
}
export interface InviteResponse {
url: string;
}
export declare function createInviteRequest(config: ICreateInviteRequest): InviteResponse;