notbank
Version:
The Notbank for Node.js
16 lines (15 loc) • 635 B
TypeScript
import { ServiceConnection } from "../core/serviceClient.js";
import { WebAuthenticateUserRequest } from "../models/request/webAuthenticateUser.js";
import { WebAuthenticateUserResponse } from "../models/response/webAuthenticateUser.js";
export declare class AuthService {
connection: ServiceConnection;
constructor(connection: ServiceConnection);
/**
* https://apidoc.notbank.exchange/?http#webauthenticateuser
*/
webAuthenticateUser(params: WebAuthenticateUserRequest): Promise<WebAuthenticateUserResponse>;
/**
* https://apidoc.notbank.exchange/?http#logout
*/
logOut(): Promise<void>;
}