/** * Type definition for {@link WebexAppsSpace.states | app.application.space.states} * @public */ export interface IWebexAppsSpaceState { /** * Space id. Can be a real space id or a derived space id. If isPrivateDataAvailable is true then the real id is used, otherwise the derived id is used. * @readonly */ id: string | null; /** * Derived space id. * @readonly */ derivedId: string | null; /** * Title of the given space; blank if isPrivateDataAvailable is false. * @readonly */ title: string | null; } export interface IWebexAppsSpace { states: IWebexAppsSpaceState; initialze: () => Promise; updateStates: (newStates: IWebexAppsSpaceState, eventName?: string) => void; getSpace: () => Promise; } //# sourceMappingURL=space.interfaces.d.ts.map