UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

12 lines (11 loc) 258 B
type Client = { write(value: string): void; close(): void; }; export declare class LiveReload { clients: Array<Client>; constructor(); reload(type: 'refetch' | 'refresh' | 'reload'): void; register(client: Client): void; } export {};