@hellocoop/helper-server
Version: 
Hellō helper functions for server
18 lines • 485 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;
//# sourceMappingURL=createInviteRequest.d.ts.map