implement a non-working version of the app, with no database and no
messages yet
This commit is contained in:
parent
8ba5b8ec90
commit
f9c5c1cb36
90 changed files with 2278 additions and 15 deletions
|
|
@ -1 +1,22 @@
|
|||
// place files you want to import through the `$lib` alias in this folder.
|
||||
export const Status: Record<string, 1|2|3> = {
|
||||
OFFLINE: 1,
|
||||
DND: 2,
|
||||
ONLINE: 3
|
||||
}
|
||||
|
||||
interface InnerData {
|
||||
id: string
|
||||
}
|
||||
export interface Friend extends InnerData {
|
||||
name: string,
|
||||
status: 1|2|3,
|
||||
image: string
|
||||
}
|
||||
export interface Group extends InnerData {
|
||||
name: string
|
||||
members: number
|
||||
}
|
||||
export interface Server extends InnerData {
|
||||
name: string
|
||||
image: string
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue