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.

7 lines (6 loc) 584 B
import type { IValidateForgetPasswordData, IConfirmForgetPasswordData, ICheckForgetPasswordData } from "../../types"; import type { ForgetSecurityData } from "../../types"; declare const fillCheckForgetPasswordData: (data: ICheckForgetPasswordData) => ForgetSecurityData; declare const fillValidateForgetPasswordData: (data: IValidateForgetPasswordData) => ForgetSecurityData; declare const fillConfirmForgetPasswordData: (data: IConfirmForgetPasswordData) => ForgetSecurityData; export { fillValidateForgetPasswordData, fillConfirmForgetPasswordData, fillCheckForgetPasswordData, };