feat(client): デバイスの種類を手動指定できるように

This commit is contained in:
syuilo
2022-02-08 18:46:39 +09:00
parent 71a7165ed7
commit 190b47aad2
9 changed files with 38 additions and 7 deletions

View File

@@ -106,6 +106,10 @@ export const defaultStore = markRaw(new Storage('base', {
}
},
overridedDeviceKind: {
where: 'device',
default: null as null | 'smartphone' | 'tablet' | 'desktop',
},
serverDisconnectedBehavior: {
where: 'device',
default: 'quiet' as 'quiet' | 'reload' | 'dialog'