import { z } from 'zod';
import { soundActionCommandSchema, playSoundOptionsSchema } from './Sound.schema';

export type SoundActionCommand = z.infer<typeof soundActionCommandSchema>;

export type PlaySoundOptions = z.infer<typeof playSoundOptionsSchema>;
