UNPKG

@trophyso/node

Version:
15 lines (14 loc) 537 B
import type * as TrophyApi from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AdminIssueSeverity } from "./AdminIssueSeverity"; export declare const AdminIssue: core.serialization.ObjectSchema<serializers.AdminIssue.Raw, TrophyApi.AdminIssue>; export declare namespace AdminIssue { interface Raw { userId?: string | null; boostId?: string | null; index?: number | null; severity: AdminIssueSeverity.Raw; message: string; } }