UNPKG

@vk-io/scenes

Version:

Scenes for the library vk-io

11 lines (10 loc) 312 B
import { IScene } from './scenes/scene'; import { CacheRepository } from './cache-repository'; export type SceneRepository = CacheRepository<string, IScene>; export interface ISceneManagerOptions { /** * Scenes on the interface IScene */ scenes?: IScene[]; sessionKey?: string; }