@sethub/sdk
Version:
<div align="center"> <h1> SetHub SDK </h1>
10 lines (9 loc) • 583 B
TypeScript
import type { HttpClient } from '../../http/client';
import type { SignInWithEmailAndPassword } from './protocols/sign-in-with-email-and-password.protocols';
import type { SignUp } from './protocols/sign-up.protocols';
export declare class Authentication {
private readonly httpClient;
constructor(httpClient: HttpClient);
signInWithEmailAndPassword(input: SignInWithEmailAndPassword.Input, options?: SignInWithEmailAndPassword.Options): Promise<SignInWithEmailAndPassword.Response>;
signUp(input: SignUp.Input, options?: SignUp.Options): Promise<SignUp.Response>;
}