Files
airllm-fork-nodejs/node_modules/node-llama-cpp/dist/bindings/utils/logDistroInstallInstruction.d.ts
2026-02-05 15:27:49 +08:00

15 lines
472 B
TypeScript

type DistroPackages = {
linuxPackages?: {
apt?: string[];
apk?: string[];
};
macOsPackages?: {
brew?: string[];
};
};
export declare function logDistroInstallInstruction(prefixText: string, distroPackages: DistroPackages, { forceLogPrefix }?: {
forceLogPrefix?: boolean;
}): Promise<void>;
export declare function getDistroInstallInstruction({ linuxPackages, macOsPackages }: DistroPackages): Promise<string | null>;
export {};