UNPKG

@openinc/parse-server-opendash

Version:
15 lines (14 loc) 361 B
import type { _User } from "./_User"; export interface _SessionAttributes { id: string; objectId: string; createdAt: Date; updatedAt: Date; createdWith?: any; expiresAt?: Date; installationId?: string; restricted?: boolean; sessionToken?: string; user?: _User; } export type _Session = Parse.Session<_SessionAttributes>;