@remotion/cli
Version:
Control Remotion features using the `npx remotion` command
14 lines (13 loc) • 737 B
TypeScript
export declare const Log: {
trace: (options: import("@remotion/renderer").LogOptions & {
tag?: string;
}, message?: any, ...optionalParams: any[]) => boolean | void;
verbose: (options: import("@remotion/renderer").LogOptions & {
tag?: string;
}, message?: any, ...optionalParams: any[]) => boolean | void;
info: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
warn: (options: import("@remotion/renderer").LogOptions, message?: any, ...optionalParams: any[]) => boolean | void;
error: (options: import("@remotion/renderer").LogOptions & {
tag?: string;
}, message?: any, ...optionalParams: any[]) => boolean | void;
};