UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

8 lines 424 B
import { ChainForkConfig } from "@lodestar/config"; import { Db, Repository } from "@lodestar/db"; import { ValidatorIndex, phase0 } from "@lodestar/types"; export declare class VoluntaryExitRepository extends Repository<ValidatorIndex, phase0.SignedVoluntaryExit> { constructor(config: ChainForkConfig, db: Db); getId(value: phase0.SignedVoluntaryExit): ValidatorIndex; } //# sourceMappingURL=voluntaryExit.d.ts.map