flexbase-client
Version:
Flexbase api client
11 lines (10 loc) • 452 B
TypeScript
import { FlexbaseResponse } from '../models/FlexbaseResponse.js';
import { FlexbaseClientBase } from './FlexbaseClient.Base.js';
interface ValidatePassResponse extends FlexbaseResponse {
token: string | null;
}
export declare class FlexbaseClientPassword extends FlexbaseClientBase {
changePassword(password: string): Promise<FlexbaseResponse>;
validatePassword(email: string, password: string): Promise<ValidatePassResponse>;
}
export {};