UNPKG

ggez-banking-sdk

Version:

A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.

8 lines (7 loc) 728 B
import type { IResetPasswordData, IResetSecurityCodeData, IResetSecurityQuestionsData, IValidateSecurityCodeData } from "../../../types"; import type { ResetUserSecurity, ValidateUserSecurity } from "../../../types"; declare const fillResetPasswordData: (data: IResetPasswordData) => ResetUserSecurity; declare const fillResetSecurityCodeData: (data: IResetSecurityCodeData) => ResetUserSecurity; declare const fillResetSecurityQuestionsData: (data: IResetSecurityQuestionsData) => ResetUserSecurity; declare const fillValidateSecurityCodeData: (data: IValidateSecurityCodeData) => ValidateUserSecurity; export { fillResetPasswordData, fillResetSecurityCodeData, fillResetSecurityQuestionsData, fillValidateSecurityCodeData, };