blob: 497e33484b79e71936cfe1eeae534d2ca4794155 (
plain) (
blame)
1
2
3
4
5
6
7
|
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;
persistInstanceBan?: boolean;
}
|