atlp-rwanda/hackers-ec-Fe

View on GitHub
src/validations/chat/chatInputValidations.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import { z } from 'zod';

export const chatInputValidations = z.object({
    message: z.string().min(1).max(255),
});

export type chatInputType = z.infer<typeof chatInputValidations>;