UNPKG

@trophyso/node

Version:
11 lines (10 loc) 372 B
import type * as TrophyApi from "../index"; /** * Response containing created points systems and any per-item issues. */ export interface CreatePointsSystemsResponse { /** Array of successfully created points systems. */ created: TrophyApi.CreatedAdminPointsSystem[]; /** Array of issues encountered during creation. */ issues: TrophyApi.AdminIssue[]; }