mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-22 18:35:21 -06:00
17 lines
568 B
TypeScript
17 lines
568 B
TypeScript
export declare function isBundleHashInputPath(filePath: string, repoRoot?: string): boolean;
|
|
export declare function getLocalRolldownCliCandidates(repoRoot?: string): string[];
|
|
export declare function getBundleHashRepoInputPaths(repoRoot?: string): string[];
|
|
export declare function compareNormalizedPaths(left: string, right: string): number;
|
|
|
|
export declare function listTrackedInputFiles(
|
|
runGit: (
|
|
command: string,
|
|
args: string[],
|
|
options: object,
|
|
) => {
|
|
status: number | null;
|
|
stdout: string;
|
|
},
|
|
repoRoot?: string,
|
|
): string[] | null;
|