UNPKG

rollup-plugin-rld

Version:

Rollup plugin to inject a live reload script into your bundle

12 lines (9 loc) 269 B
/** @format */ import type { EmitterAction } from './EmitterAction'; /** * @description * Function to subscribe to an `Emitter`. * * @param { EmitterAction } action - callback to execute when notified. */ export type Subscribe = (action: EmitterAction) => void;