@lodestar/prover
Version:
A Typescript implementation of the Ethereum Consensus light client
17 lines • 652 B
TypeScript
/**
* WARNING!! If you change this path make sure to update:
* - 'packages/cli/package.json' -> .files -> `".git-data.json"`
*/
export declare const gitDataPath: string;
/** Git data type used to construct version information string and persistence. */
export type GitData = {
/** "developer-feature" */
branch: string;
/** "80c248bb392f512cc115d95059e22239a17bbd7d" */
commit: string;
};
/** Writes a persistent git data file. */
export declare function writeGitDataFile(gitData: GitData): void;
/** Reads the persistent git data file. */
export declare function readGitDataFile(): GitData;
//# sourceMappingURL=gitDataPath.d.ts.map