import { UserDetail } from './base' export interface Request { userId: number } export interface Response { userId: number userData: UserDetail banState: 0 | 1 | 2 // 0 = not banned, 1 = warning, 2 = banned }