lml-main
Version:
This is now a mono repository published into many standalone packages.
9 lines (8 loc) • 323 B
TypeScript
import { RxHttpActionTypes, RxHttpRequestAction } from 'redux-rx-http';
export declare const INVITE_USER: RxHttpActionTypes;
export interface InviteUserAction {
type: typeof INVITE_USER;
email: string;
partner: string;
}
export declare const inviteUser: (email: string, partner: string) => RxHttpRequestAction;