SessionStore

Type alias SessionStore

SessionStore: {
    about: {
        [key: string]: string;
    };
    activeSnapshotID: number;
    animationFrames: {
        [key: string]: AnimationFrame[];
    };
    attachments: any[];
    customProperties: any[];
    drawings: {
        [key: number]: any;
    };
    instances: {
        [key: number]: any;
    };
    propertyKeys: string[];
    snapshots: {
        [key: number]: any;
    };
    tags: {
        [key: string]: string;
    };
}

Type declaration

  • about: {
        [key: string]: string;
    }
    • [key: string]: string
  • activeSnapshotID: number
  • animationFrames: {
        [key: string]: AnimationFrame[];
    }
  • attachments: any[]
  • customProperties: any[]
  • drawings: {
        [key: number]: any;
    }
    • [key: number]: any
  • instances: {
        [key: number]: any;
    }
    • [key: number]: any
  • propertyKeys: string[]
  • snapshots: {
        [key: number]: any;
    }
    • [key: number]: any
  • tags: {
        [key: string]: string;
    }
    • [key: string]: string