mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-11 06:31:46 +08:00
16 lines
394 B
TypeScript
16 lines
394 B
TypeScript
enum key {
|
|
token = 'token',
|
|
theme = 'theme',
|
|
backgroundImage = 'background-image',
|
|
musicID = 'music-id',
|
|
showMusicTip = 'show-music-tip',
|
|
autoPlay = 'auto-play',
|
|
customIcons = 'custom-icons',
|
|
isCollapsedMusicPlayer = 'is-collapsed-music-player',
|
|
sideBarOpen = 'side-bar-open',
|
|
httpDebugConfig = 'http-debug-config',
|
|
wsDebugConfig = 'ws-debug-config'
|
|
}
|
|
|
|
export default key
|