mirror of
https://github.com/linuxserver/budge.git
synced 2026-01-18 19:22:22 +08:00
20 lines
271 B
TypeScript
20 lines
271 B
TypeScript
export interface BaseResponse {
|
|
message?: string
|
|
}
|
|
|
|
export interface DataResponse<T> extends BaseResponse {
|
|
data?: T
|
|
}
|
|
|
|
/**
|
|
* @example {
|
|
* message: "Not allowed",
|
|
* }
|
|
*/
|
|
export interface ErrorResponse {
|
|
/**
|
|
* Message of the error
|
|
*/
|
|
message: string
|
|
}
|