import { EpochSec } from "../utils"; import { APIBanReason } from "./ban"; import Base from "./base"; export interface APIAppeal extends Base { strike_id?: string; ban_id?: string; ban_reason: APIBanReason; created_at: EpochSec; status: APIAppealStatus; type: APIAppealType; } export declare enum AppealStatus { PENDING = "pending", DENIED = "denied" } export declare type APIAppealStatus = `${AppealStatus}`; export declare enum AppealType { BAN = "ban", STRIKE = "strike" } export declare type APIAppealType = `${AppealType}`; //# sourceMappingURL=appeal.d.ts.map