Add .gitignore to exclude all node packages and lock files
This commit is contained in:
Generated
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
import execa from 'execa';
|
||||
import type { SpawnOptionsWithoutStdio } from 'node:child_process';
|
||||
import type { CancelSignal } from './make-cancel-signal';
|
||||
export declare const callFf: ({ args, bin, indent, logLevel, options, binariesDirectory, cancelSignal, }: {
|
||||
bin: "ffmpeg" | "ffprobe";
|
||||
args: (string | null)[];
|
||||
indent: boolean;
|
||||
logLevel: "error" | "info" | "trace" | "verbose" | "warn";
|
||||
binariesDirectory: string | null;
|
||||
cancelSignal: CancelSignal | undefined;
|
||||
options?: execa.Options<string> | undefined;
|
||||
}) => execa.ExecaChildProcess<string>;
|
||||
export declare const callFfNative: ({ args, bin, indent, logLevel, options, binariesDirectory, cancelSignal, }: {
|
||||
bin: "ffmpeg" | "ffprobe";
|
||||
args: (string | null)[];
|
||||
indent: boolean;
|
||||
logLevel: "error" | "info" | "trace" | "verbose" | "warn";
|
||||
binariesDirectory: string | null;
|
||||
cancelSignal: CancelSignal | undefined;
|
||||
options?: SpawnOptionsWithoutStdio | undefined;
|
||||
}) => import("child_process").ChildProcessWithoutNullStreams;
|
||||
Reference in New Issue
Block a user