@lodestar/prover
Version:
A Typescript implementation of the Ethereum Consensus light client
12 lines • 379 B
TypeScript
/**
* Gathers all information on package version including Git data.
* @returns a version string, e.g.
* - Stable release: `v0.36.0/80c248bb`
* - Dev release: `v0.36.0-dev.80c248bb/80c248bb`
* - Test branch: `v0.36.0/developer-feature/80c248bb`
*/
export declare function getVersionData(): {
version: string;
commit: string;
};
//# sourceMappingURL=version.d.ts.map