Newer
Older
percord / src / schemas / api / users / InstanceUserDeleteSchema.ts
@Rory& Rory& on 12 Dec 264 bytes More instance ban stuff
import { ConnectedAccount } from "@spacebar/util";

export type InstanceUserDeleteSchema = InstanceUserDeleteSchemaContent | undefined; //unsure if this a correct way to make the body optional
export interface InstanceUserDeleteSchemaContent {
	reason?: string;
}