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.
12 lines (11 loc) • 440 B
TypeScript
import type { BaseResult } from "../../banking/common/baseresult";
import { BaseServiceParameters } from "./baseService";
type PromotionServiceParameters = BaseServiceParameters;
type TwitterSpotlightPostIdsResult = BaseResult & {
postIds: string[];
};
type PromotionIncrementResult = BaseResult & {
message: string;
};
export type { TwitterSpotlightPostIdsResult, PromotionIncrementResult };
export { PromotionServiceParameters };