Resortable - v2.0.0-alpha.1
Preparing search index...
EventSystemInterface
Interface EventSystemInterface
Event system interface for type safety
Public
interface
EventSystemInterface
{
on
(
event
:
string
,
handler
:
(
...
args
:
any
[]
)
=>
void
)
:
void
;
off
(
event
:
string
,
handler
?:
(
...
args
:
any
[]
)
=>
void
)
:
void
;
emit
(
event
:
string
,
...
args
:
any
[]
)
:
void
;
}
Index
Methods
on
off
emit
Methods
on
on
(
event
:
string
,
handler
:
(
...
args
:
any
[]
)
=>
void
)
:
void
Parameters
event
:
string
handler
:
(
...
args
:
any
[]
)
=>
void
Returns
void
off
off
(
event
:
string
,
handler
?:
(
...
args
:
any
[]
)
=>
void
)
:
void
Parameters
event
:
string
Optional
handler
:
(
...
args
:
any
[]
)
=>
void
Returns
void
emit
emit
(
event
:
string
,
...
args
:
any
[]
)
:
void
Parameters
event
:
string
...
args
:
any
[]
Returns
void
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
On This Page
Methods
on
off
emit
Resortable - v2.0.0-alpha.1
Loading...
Event system interface for type safety
Public