blob: aee124fe880682967214c5d7a834fff9b0bbcb8a (
plain) (
blame)
1
2
3
4
5
|
export type InstanceUserDeleteSchema = InstanceUserDeleteSchemaContent | undefined; //unsure if this a correct way to make the body optional
export interface InstanceUserDeleteSchemaContent {
reason?: string;
persistInstanceBan?: boolean;
}
|