fix(federation): 🔥 Remove old export

This commit is contained in:
Jesse Wierzbinski 2024-05-14 09:36:10 -10:00
parent 1c10142c04
commit 967ceb8cde
No known key found for this signature in database

View file

@ -33,7 +33,7 @@ import {
// biome-ignore lint/suspicious/noExplicitAny: Used only as a base type // biome-ignore lint/suspicious/noExplicitAny: Used only as a base type
type AnyZod = z.ZodType<any, any, any>; type AnyZod = z.ZodType<any, any, any>;
export type InferType<T extends AnyZod> = z.infer<T>; type InferType<T extends AnyZod> = z.infer<T>;
/** /**
* Validates entities against their respective schemas. * Validates entities against their respective schemas.