UNPKG
svelte-slim
Version:
latest (1.1.0)
1.1.0
1.0.0
A lightweight event management library for Svelte.
github.com/hkm007/slim
hkm007/slim
svelte-slim
/
dist
/
core
/
types.d.ts
5 lines
(4 loc)
•
119 B
TypeScript
View Raw
1
2
3
4
5
export
interface
EventConfig
{
handler
:
(
...
args
:
any
[]
) =>
void
|
Promise
<
void
>;
stopPropagation
?:
boolean
; }