mirror of
https://github.com/KevinMidboe/infra-map.git
synced 2026-01-11 03:35:50 +00:00
11 lines
163 B
TypeScript
11 lines
163 B
TypeScript
export interface Filament {
|
|
hex: string;
|
|
color: string;
|
|
material: string;
|
|
weight: string;
|
|
count: number;
|
|
link: string;
|
|
created: number;
|
|
updated: number;
|
|
}
|