Files
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

28 lines
1.1 KiB
TypeScript

import { BinaryTarget } from '@prisma/get-platform';
import { BinaryType } from './BinaryType';
export declare const vercelPkgPathRegex: RegExp;
export type BinaryDownloadConfiguration = {
[binary in BinaryType]?: string;
};
export type BinaryPaths = {
[binary in BinaryType]?: {
[binaryTarget in BinaryTarget]: string;
};
};
export interface DownloadOptions {
binaries: BinaryDownloadConfiguration;
binaryTargets?: BinaryTarget[];
showProgress?: boolean;
progressCb?: (progress: number) => void;
version?: string;
skipDownload?: boolean;
failSilent?: boolean;
printVersion?: boolean;
skipCacheIntegrityCheck?: boolean;
}
export declare function download(options: DownloadOptions): Promise<BinaryPaths>;
export declare function getVersion(enginePath: string, binaryName: string): Promise<string | undefined>;
export declare function getBinaryName(binaryName: BinaryType, binaryTarget: BinaryTarget): string;
export declare function maybeCopyToTmp(file: string): Promise<string>;
export declare function plusX(file: any): void;