Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions
@@ -0,0 +1,24 @@
import type { AnyComposition } from './CompositionManager.js';
import type { VideoConfig } from './video-config.js';
type ResolveCompositionConfigContect = Record<string, VideoConfigState | undefined>;
export declare const ResolveCompositionContext: import("react").Context<ResolveCompositionConfigContect | null>;
export declare const resolveCompositionsRef: import("react").RefObject<{
setCurrentRenderModalComposition: (compositionId: string | null) => void;
reloadCurrentlySelectedComposition: () => void;
} | null>;
type VideoConfigState = {
type: 'loading';
} | {
type: 'success';
result: VideoConfig;
} | {
type: 'success-and-refreshing';
result: VideoConfig;
} | {
type: 'error';
error: Error;
};
export declare const needsResolution: (composition: AnyComposition) => boolean;
export declare const PROPS_UPDATED_EXTERNALLY = "remotion.propsUpdatedExternally";
export declare const useResolvedVideoConfig: (preferredCompositionId: string | null) => VideoConfigState | null;
export {};