togezr
Version:
Better together_
16 lines • 564 B
TypeScript
import * as vsls from 'vsls';
import { SessionConnectorHub } from './sessionConnectorHub';
export interface IGuest {
name: string;
email: string;
id: string;
}
export interface IMessageRessponeData {
ok: boolean;
channel: string;
ts: string;
}
export declare const startSession: (vslsApi: vsls.LiveShare, id: string) => Promise<SessionConnectorHub>;
export declare const disposeCurrentSessionIfPresent: () => Promise<void>;
export declare const getCurrentSession: () => SessionConnectorHub | undefined;
//# sourceMappingURL=session.d.ts.map