mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
11 lines
219 B
TypeScript
11 lines
219 B
TypeScript
import { z } from 'zod';
|
|
|
|
const APIResponseValidationSchema = z.object({
|
|
message: z.string(),
|
|
statusCode: z.number(),
|
|
success: z.boolean(),
|
|
payload: z.unknown(),
|
|
});
|
|
|
|
export default APIResponseValidationSchema;
|