init commit

This commit is contained in:
Carlos
2026-02-21 10:33:18 +01:00
parent c863a943ed
commit 9d955bf338
9512 changed files with 2015317 additions and 1305 deletions

21
remotion/node_modules/@remotion/studio/dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,21 @@
export { deleteStaticFile, DeleteStaticFileResponse, } from './api/delete-static-file';
export { focusDefaultPropsPath } from './api/focus-default-props-path';
export { getStaticFiles, StaticFile } from './api/get-static-files';
export { goToComposition } from './api/go-to-composition';
export { UpdateDefaultPropsFunction } from './api/helpers/calc-new-props';
export { pause } from './api/pause';
export { play } from './api/play';
export { reevaluateComposition } from './api/reevaluate-composition';
export { restartStudio } from './api/restart-studio';
export { saveDefaultProps } from './api/save-default-props';
export { seek } from './api/seek';
export { toggle } from './api/toggle';
export { updateDefaultProps } from './api/update-default-props';
export { visualControl } from './api/visual-control';
export { watchPublicFolder } from './api/watch-public-folder';
export { watchStaticFile } from './api/watch-static-file';
export { writeStaticFile } from './api/write-static-file';
export declare const StudioInternals: {
createComposition: <Schema extends import("zod").AnyZodObject, Props extends Record<string, unknown>>({ ...other }: import("remotion").CompositionProps<Schema, Props>) => () => import("react/jsx-runtime").JSX.Element;
createStill: <Schema extends import("zod").AnyZodObject, Props extends Record<string, unknown>>({ ...other }: import("remotion").StillProps<Schema, Props>) => () => import("react/jsx-runtime").JSX.Element;
};