init commit
This commit is contained in:
25
remotion/node_modules/@remotion/studio-shared/dist/hot-middleware.d.ts
generated
vendored
Normal file
25
remotion/node_modules/@remotion/studio-shared/dist/hot-middleware.d.ts
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
export type HotMiddlewareMessage = {
|
||||
action: 'building';
|
||||
name?: string;
|
||||
} | {
|
||||
action: 'built' | 'sync';
|
||||
name: string;
|
||||
time: number | undefined;
|
||||
errors: unknown[];
|
||||
warnings: unknown[];
|
||||
hash: string | undefined;
|
||||
modules: {
|
||||
[key: string]: string;
|
||||
};
|
||||
};
|
||||
export declare const hotMiddlewareOptions: {
|
||||
path: string;
|
||||
timeout: number;
|
||||
reload: boolean;
|
||||
warn: boolean;
|
||||
heartbeat: number;
|
||||
};
|
||||
export type HotMiddlewareOptions = typeof hotMiddlewareOptions;
|
||||
export type ModuleMap = {
|
||||
[key: string]: string;
|
||||
};
|
||||
Reference in New Issue
Block a user