mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
7 lines
263 B
TypeScript
7 lines
263 B
TypeScript
import { VerifyOTPRequest } from "../../models/request/account/verifyOTPRequest";
|
|
|
|
export abstract class UserVerificationApiServiceAbstraction {
|
|
postAccountVerifyOTP: (request: VerifyOTPRequest) => Promise<void>;
|
|
postAccountRequestOTP: () => Promise<void>;
|
|
}
|