mirror of https://github.com/buster-so/buster.git
7 lines
204 B
TypeScript
7 lines
204 B
TypeScript
|
import { z } from 'zod/v4';
|
||
|
import { TeamSchema } from './teams.types';
|
||
|
|
||
|
export const TeamListResponseSchema = z.array(TeamSchema);
|
||
|
|
||
|
export type TeamListResponse = z.infer<typeof TeamListResponseSchema>;
|