Massive/volume.ts

7 lines
104 B
TypeScript
Raw Normal View History

export default interface Volume {
name: string;
created: string;
value: number;
unit: string;
}