UNPKG
@prismai/prism-ladle
Version:
latest (0.0.1)
0.0.1
Enhanced component development environment based on Ladle, with multi-project support
@prismai/prism-ladle
/
packages
/
ladle
/
lib
/
app
/
src
/
story-hmr.ts
7 lines
(5 loc)
•
152 B
text/typescript
View Raw
1
2
3
4
5
6
7
type
WatcherT
=
() =>
void
;
export
const
watchers
:
WatcherT
[] = [];
export
const
storyUpdated
= (
) => { watchers.
forEach
(
(
watcher
) =>
watcher
()); };