Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
import type { AnyZodObject } from 'zod';
|
||||
import type { CalculateMetadataFunction } from './Composition.js';
|
||||
import type { InferProps } from './props-if-has-props.js';
|
||||
import type { VideoConfig } from './video-config.js';
|
||||
type ResolveVideoConfigParams = {
|
||||
compositionId: string;
|
||||
compositionWidth: number | null;
|
||||
compositionHeight: number | null;
|
||||
compositionFps: number | null;
|
||||
compositionDurationInFrames: number | null;
|
||||
calculateMetadata: CalculateMetadataFunction<InferProps<AnyZodObject, Record<string, unknown>>> | null;
|
||||
signal: AbortSignal;
|
||||
defaultProps: Record<string, unknown>;
|
||||
inputProps: Record<string, unknown>;
|
||||
};
|
||||
export declare const resolveVideoConfig: ({ calculateMetadata, signal, defaultProps, inputProps: originalProps, compositionId, compositionDurationInFrames, compositionFps, compositionHeight, compositionWidth, }: ResolveVideoConfigParams) => VideoConfig | Promise<VideoConfig>;
|
||||
export declare const resolveVideoConfigOrCatch: (params: ResolveVideoConfigParams) => {
|
||||
type: "success";
|
||||
result: VideoConfig | Promise<VideoConfig>;
|
||||
} | {
|
||||
type: "error";
|
||||
error: Error;
|
||||
};
|
||||
export {};
|
||||
Reference in New Issue
Block a user