UNPKG

flexbase-client

Version:
11 lines (10 loc) 452 B
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 {};