@trophyso/node
Version:
NodeJS SDK for the Trophy API
13 lines (12 loc) • 548 B
TypeScript
import type * as TrophyApi from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { AdminIssue } from "./AdminIssue";
import { AdminPointsLevel } from "./AdminPointsLevel";
export declare const PatchPointsLevelsResponse: core.serialization.ObjectSchema<serializers.PatchPointsLevelsResponse.Raw, TrophyApi.PatchPointsLevelsResponse>;
export declare namespace PatchPointsLevelsResponse {
interface Raw {
updated: AdminPointsLevel.Raw[];
issues: AdminIssue.Raw[];
}
}