4 lines
136 B

import { LabelDTO } from './labelData'
export type CreateLabelCommand = Omit<LabelDTO, 'id'>
export type UpdateLabelCommand = LabelDTO