6 lines
88 B
TypeScript
Raw Normal View History

export interface UnitOfMeasure {
name: string;
id: string;
value: string;
}