Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
import { type MediaParserLogLevel } from '@remotion/media-parser';
|
||||
import { type ExtractFramesTimestampsInSecondsFn } from './internal-extract-frames';
|
||||
export type ExtractFramesProps = {
|
||||
src: string;
|
||||
timestampsInSeconds: number[] | ExtractFramesTimestampsInSecondsFn;
|
||||
onFrame: (frame: VideoFrame) => void;
|
||||
signal?: AbortSignal;
|
||||
acknowledgeRemotionLicense?: boolean;
|
||||
logLevel?: MediaParserLogLevel;
|
||||
};
|
||||
export type ExtractFrames = (options: ExtractFramesProps) => Promise<void>;
|
||||
export declare const extractFrames: ExtractFrames;
|
||||
Reference in New Issue
Block a user