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,50 @@
import React from 'react';
import type { LoopDisplay } from './CompositionManager.js';
export type AbsoluteFillLayout = {
layout?: 'absolute-fill';
premountFor?: number;
postmountFor?: number;
style?: React.CSSProperties;
styleWhilePremounted?: React.CSSProperties;
styleWhilePostmounted?: React.CSSProperties;
className?: string;
};
export type LayoutAndStyle = AbsoluteFillLayout | {
layout: 'none';
};
export type SequencePropsWithoutDuration = {
readonly children: React.ReactNode;
readonly width?: number;
readonly height?: number;
readonly from?: number;
readonly name?: string;
readonly showInTimeline?: boolean;
/**
* @deprecated For internal use only.
*/
readonly _remotionInternalLoopDisplay?: LoopDisplay;
/**
* @deprecated For internal use only.
*/
readonly _remotionInternalPremountDisplay?: number | null;
/**
* @deprecated For internal use only.
*/
readonly _remotionInternalPostmountDisplay?: number | null;
/**
* @deprecated For internal use only.
*/
readonly _remotionInternalStack?: string;
/**
* @deprecated For internal use only.
*/
readonly _remotionInternalIsPremounting?: boolean;
/**
* @deprecated For internal use only.
*/
readonly _remotionInternalIsPostmounting?: boolean;
} & LayoutAndStyle;
export type SequenceProps = {
readonly durationInFrames?: number;
} & SequencePropsWithoutDuration;
export declare const Sequence: React.ForwardRefExoticComponent<SequenceProps & React.RefAttributes<HTMLDivElement>>;