@trophyso/node
Version:
NodeJS SDK for the Trophy API
11 lines (10 loc) • 353 B
TypeScript
import type * as TrophyApi from "../index";
/**
* Response containing created levels and any per-item issues.
*/
export interface CreatePointsLevelsResponse {
/** Array of successfully created levels. */
created: TrophyApi.AdminPointsLevel[];
/** Array of issues encountered during level creation. */
issues: TrophyApi.AdminIssue[];
}