ken_nogi/NodeJS/JigyoKeikakuUpdate/node_modules/@bazel/runfiles/repository.d.ts
Kenichiro NOGI 7b357fa2cf 2025-11-08
2025-11-08 10:26:52 +09:00

14 lines
457 B
TypeScript

/**
* Utils for managing repository mappings.
*
* The majority of this code is ported from [rules_go](https://github.com/bazelbuild/rules_go/pull/3347).
*/
export interface RepoMappings {
[sourceRepo: string]: {
[targetRepoApparentName: string]: string;
};
}
export declare function currentRepository(): string;
export declare function callerRepository(): string;
export declare function callerRepositoryFromStack(skip: number): string;