UNPKG
cursor-style-manager-wle
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
Shared cursor styles for Wonderland Engine
cursor-style-manager-wle
/
dist
/
ICursorStyleManager.d.ts
8 lines
(7 loc)
•
283 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import { Component }
from
'@wonderlandengine/api'
; export
interface
ICursorStyleManager
extends
Component
{
cursorStyleHandler
(
style
:
string
):
void
;
getStyle
(
key
: unknown):
string
|
null
;
setStyle
(
key
: unknown,
style
:
string
):
void
;
clearStyle
(
key
: unknown):
void
; }