main
ts 5 lines 91 Bytes
Raw
1 export interface FlaskBaseResponse {
2 message: string
3 detail?: string
4 success: boolean
5 }