Added extruder and bed temp to materials external db

This commit is contained in:
Donkie
2024-05-12 22:12:13 +02:00
parent 55471062ab
commit 46ab709f72
2 changed files with 4 additions and 0 deletions

View File

@@ -18,6 +18,8 @@ export interface ExternalFilament {
export interface ExternalMaterial {
material: string;
density: number;
extruder_temp: number | null;
bed_temp: number | null;
}
export function useGetExternalDBFilaments() {