mirror of
https://github.com/revoltchat/revite.git
synced 2025-01-09 05:54:44 -05:00
9 lines
191 B
TypeScript
9 lines
191 B
TypeScript
// TODO: re-export from revolt-api in some way
|
|
declare type Session = {
|
|
_id?: string;
|
|
token: string;
|
|
name: string;
|
|
user_id: string;
|
|
};
|
|
|
|
declare type SessionPrivate = Session;
|