* migrate trpc routers in app package to trpc package * delete * delete * delete * fix * fix * fix * format * format * fix * fix * fix * fix * remove unused file * fix * fix * wip
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { z } from "zod";
|
|
|
|
export const ZGetAttributesForTeamInputSchema = z.object({
|
|
teamId: z.number(),
|
|
});
|
|
|
|
export type TGetAttributesForTeamInputSchema = z.infer<typeof ZGetAttributesForTeamInputSchema>;
|