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.

10 lines (9 loc) 253 B
import type { BaseResult } from ".."; import type { Email, Phone, Device } from "../entities"; type VerifySecurityData = BaseResult & { username: string; email: Email; phone: Phone; device: Device; }; export type { VerifySecurityData };