UNPKG

@inworld/web-core

Version:
12 lines (11 loc) 486 B
import { InternalClientConfiguration, SessionState } from '../../common/data_structures/index.js'; import { SessionToken } from '../../entities/session_token.entity.js'; import { PbService } from './pb.service.js'; export interface getSessionStateProps { config: InternalClientConfiguration; session: SessionToken; scene: string; } export declare class StateSerializationService extends PbService { getSessionState(props: getSessionStateProps): Promise<SessionState>; }