UNPKG

clumsy-graphics

Version:

a tool for rapidly developing animations where frames are described using svg elements à la react 🙃

8 lines (7 loc) 400 B
import { ClientServerEvent } from '../models/ClientServerEvent'; import { InitialSagaApi } from '../sagas/initialSaga'; export interface GetClientServerEventChannelApi extends Pick<InitialSagaApi, 'clientServerPort'> { } export declare function getClientServerEventChannel(api: GetClientServerEventChannelApi): { clientServerEventChannel: import("redux-saga").EventChannel<ClientServerEvent>; };