repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'feat/rbf-wording' into 'main'
[ProtonMail-WebClient.git]
/
packages
/
drive-store
/
store
/
_devices
/
interface.ts
blob
8b0b401618c07ddafc166bc79561f155c6bdb554
1
export interface Device {
2
id: string;
3
volumeId: string;
4
shareId: string;
5
linkId: string;
6
name: string;
7
modificationTime: number;
8
haveLegacyName: boolean;
9
}
10
11
export type DevicesState = {
12
[deviceId: string]: Device;
13
};