aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/lib/models/internal/ISession.ts
blob: a452e20fea2f586ff6c21c8b9b5ef41078410b87 (plain) (blame)
1
2
3
4
5
6
7
8
export type Session = {
    profile: {
        username: string,
        displayName: string,
        id: string,
    },
    lastChecked: number,
}