revite/src/types/revolt-api.d.ts
2022-06-28 13:20:08 +01:00

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;