feat: make system components require the system classes

This commit is contained in:
Spectralitree
2021-12-12 07:45:42 +01:00
parent be1a2423f9
commit ed257afcc6
5 changed files with 9 additions and 7 deletions

View File

@@ -3,8 +3,9 @@
import CardsHeader from '../CardsHeader.svelte';
import SystemBody from './Body.svelte';
import SystemPrivacy from './Privacy.svelte';
import type Sys from '../../api/system';
export let user;
export let user: Sys;
export let isPublic = true;
let editMode = false;