6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const AccountDetailsSchema = z.object({
|
|
displayName: z.string().min(2).max(100),
|
|
});
|