jankboard/client/src/globals.d.ts

21 lines
328 B
TypeScript
Raw Normal View History

2024-02-21 20:10:42 -08:00
type Gear = 'p' | 'r' | 'n' | 'l' | 'a' | 'd'
type Mode = 'chill' | 'ludicrous' | 'cruise'
type App = 'camera' | 'media-player'
interface SongData {
title: string
artist: string
src: string
coverImg: string
}
interface AppData {
[key: App]: {
name: string
component: SvelteComponent
icon: string
}
}