forked from SpikeHD/shelter-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.d.ts
48 lines (43 loc) · 901 Bytes
/
types.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
interface DorionSettings {
zoom: number | string
client_type: string
sys_tray: boolean
push_to_talk: boolean
push_to_talk_keys: string[]
theme: string
use_native_titlebar: boolean
start_maximized: boolean
open_on_startup: boolean
startup_minimized: boolean
autoupdate: boolean
update_notify: boolean
desktop_notifications: boolean
auto_clear_cache: boolean
multi_instance: boolean
disable_hardware_accel: boolean
}
interface DorionTheme {
label: string
value: string
}
interface DorionPlugin {
name: string
preload: boolean
disabled: boolean
}
interface ShelteRPCPreviouslyPlayed {
name: string
lastPlayed: number
hide: boolean
local?: boolean
appid: string
}
interface ShelteRPCStore {
currentlyPlaying: string
previouslyPlayed: ShelteRPCPreviouslyPlayed[]
}
interface ProcessWindow {
title: string
pid: string
process_name: string
}