mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-30 10:27:51 +00:00
23 lines
526 B
TypeScript
23 lines
526 B
TypeScript
interface SendResponseOptions {
|
|
type: 'Success' | 'Fail'
|
|
message?: string
|
|
data?: any
|
|
}
|
|
|
|
export function sendResponse(options: SendResponseOptions) {
|
|
if (options.type === 'Success') {
|
|
return Promise.resolve({
|
|
message: options.message ?? null,
|
|
data: options.data ?? null,
|
|
status: options.type,
|
|
})
|
|
}
|
|
|
|
// eslint-disable-next-line prefer-promise-reject-errors
|
|
return Promise.reject({
|
|
message: options.message ?? 'Failed',
|
|
data: options.data ?? null,
|
|
status: options.type,
|
|
})
|
|
}
|