Massive/volume.ts

7 lines
100 B
TypeScript
Raw Normal View History

export default interface Volume {
2022-10-31 04:22:08 +00:00
name: string
created: string
value: number
unit: string
}