UNPKG
@vk-io/scenes
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.0
1.0.0
0.0.0-alpha.5
0.0.0-alpha.4
0.0.0-alpha.3
0.0.0-alpha.2
0.0.0-alpha.1
Scenes for the library vk-io
github.com/negezor/vk-io
negezor/vk-io
@vk-io/scenes
/
lib
/
scene-manager.types.d.ts
11 lines
(10 loc)
•
312 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
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
; }