UNPKG

sdg

Version:

pomelo ts

21 lines (20 loc) 612 B
import { FRONTEND_ID, SID, UID } from './IConnector'; import { IObject } from './common'; import { FrontendSession, BackendSession } from '..'; export { default as ConnectorSession } from '../common/service/session/session'; export interface ISession { id: SID; uid: UID; frontendId: FRONTEND_ID; settings: IObject; } export interface IFrontendSessionExport { id: SID; uid: UID; frontendId: FRONTEND_ID; settings: IObject; } export declare type IFrontendOrBackendSession = FrontendSession | BackendSession; export interface ISessionServiceOptions { singleSession?: boolean; }