UNPKG

@remotion/studio

Version:

APIs for interacting with the Remotion Studio

17 lines (16 loc) 587 B
/** * Source code is adapted from * https://github.com/webpack-contrib/webpack-hot-middleware#readme * and rewritten in TypeScript. This file is MIT licensed */ /** * Based heavily on https://github.com/webpack/webpack/blob/ * c0afdf9c6abc1dd70707c594e473802a566f7b6e/hot/only-dev-server.js * Original copyright Tobias Koppers @sokra (MIT license) */ import type { ModuleMap } from '@remotion/studio-shared'; export declare const processUpdate: (hash: string | undefined, moduleMap: ModuleMap, options: { timeout: number; reload: boolean; warn: boolean; }) => void;