import { z } from 'zod';
import { SOUND_NAME } from './Sounds.const';

export const soundNameSchema = z.enum(SOUND_NAME);
