11 lines
395 B
TypeScript
11 lines
395 B
TypeScript
import type { PackageManager } from '@remotion/studio-shared';
|
|
type LockfilePath = {
|
|
manager: PackageManager;
|
|
path: string;
|
|
installCommand: string;
|
|
startCommand: string;
|
|
};
|
|
export declare const lockFilePaths: LockfilePath[];
|
|
export declare const getPackageManager: (remotionRoot: string, packageManager: string | undefined, dirUp: number) => LockfilePath | "unknown";
|
|
export {};
|