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.

13 lines (12 loc) 390 B
import { BaseResult, GeoCoordinates, GroupDetails, GroupInfo, GroupSettings, GroupUser } from ".."; type GroupData = BaseResult & { info: GroupInfo; details: GroupDetails; setting: GroupSettings; group_user: GroupUser[]; history: History[]; host_name: string; geo_coordinates: GeoCoordinates; custom_field: Record<string, any>; }; export type { GroupData };