mirror of
https://github.com/standardnotes/server
synced 2026-07-14 09:01:33 -04:00
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import { Session } from '../Session/Session'
|
|
|
|
export type GetActiveSessionsForUserResponse = {
|
|
sessions: Array<Session>
|
|
}
|