mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-13 15:52:38 +00:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
interface Window {
|
|
rusticalUser: {
|
|
id: String,
|
|
displayname: String | null,
|
|
memberships: Array<String>,
|
|
principal_type: "individual" | "group" | "room" | String
|
|
}
|
|
}
|
|
|