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