refactor: generalize API library

This commit is contained in:
spiral 2022-02-01 15:24:45 -05:00
parent 6d2fa78767
commit e74b5e1c13
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
26 changed files with 229 additions and 487 deletions

View file

@ -2,10 +2,11 @@
import { Row, Col, Modal, Image, Button } from 'sveltestrap';
import moment from 'moment';
import { toHTML } from 'discord-markdown';
import type Sys from '../../api/system';
import twemoji from 'twemoji';
import { System } from '../../api/types';
export let user: Sys;
export let user: System;
export let editMode: boolean;
export let isPublic: boolean;