

export type BatchType = {
    id: string; 
    name: Record<string, string>;
    type: string;
    input_type: string;
    created_at: string; 
    updated_at: string
};

export type BatchTypeForm = {
    name: Record<string, string>;
    type: string;
    input_type: string;
};
