📦 Moves models to /types

This commit is contained in:
Rune Harlyk
2024-08-19 20:40:03 +02:00
committed by Rune Harlyk
parent cfa729ff70
commit a0c58841d7
12 changed files with 82 additions and 185 deletions
@@ -1,5 +1,5 @@
<script lang="ts">
import type { Servo } from "$lib/models";
import type { Servo } from "$lib/types/models";
import { createEventDispatcher } from "svelte";
export let servo: Servo;
@@ -1,6 +1,6 @@
<script lang="ts">
import SettingsCard from '$lib/components/SettingsCard.svelte';
import type { ServoConfiguration, Servo } from '$lib/models';
import type { ServoConfiguration, Servo } from '$lib/types/models';
import MotorOutline from '~icons/mdi/motor-outline';
import ServoController from './servo.svelte';
import Spinner from '$lib/components/Spinner.svelte';