UNPKG

clumsy-graphics

Version:

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

16 lines (15 loc) 1.12 kB
import { GraphicsRendererProcessManagerAction } from '../models/AnimationDevelopmentAction'; import { InitialSagaApi } from './initialSaga'; export interface AnimationDevelopmentSetupSagaApi extends Pick<InitialSagaApi, 'generatedAssetsDirectoryPath' | 'animationModulePath' | 'clientServerPort'> { } export declare function animationDevelopmentSetupSaga(api: AnimationDevelopmentSetupSagaApi): Generator<import("redux-saga/effects").ActionChannelEffect | import("redux-saga/effects").CallEffect<{ clientPageBundle: string; }>, { animationModuleBundlerEventChannel: import("redux-saga").EventChannel<import("../models/AnimationModuleBundlerEvent").AnimationModuleBundlerEvent>; clientServerEventChannel: import("redux-saga").EventChannel<import("../models/ClientServerEvent").ClientServerEvent>; graphicsRendererProcessManagerActionChannel: import("redux-saga").MulticastChannel<GraphicsRendererProcessManagerAction>; clientPageBundle: string; localStorageSessionCacheId: string; }, import("redux-saga").MulticastChannel<GraphicsRendererProcessManagerAction> & { clientPageBundle: string; }>;