UNPKG

spacesvr-websessions

Version:

A standardized reality for future of the 3D Web

14 lines (13 loc) 341 B
export declare type SessionConfig = { sessionId?: string; sessionPassword?: string; worldName?: string; }; export declare type SignallerConfig = { host?: string; } & SessionConfig; export interface Signaller { join: () => Promise<string[] | undefined>; wave: () => Promise<boolean>; leave: () => Promise<void>; }