mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 08:41:17 +01:00
6 lines
208 B
TypeScript
6 lines
208 B
TypeScript
export type MinimumRequestObject = { headers: Headers };
|
|
|
|
export type TaskReturn<T = unknown> =
|
|
| { success: true; data: T; error?: never }
|
|
| { success: false; data?: never; error: { message: string } };
|