UNPKG

lisk-framework

Version:

Lisk blockchain application platform

29 lines (28 loc) 675 B
import { BaseStore } from '../../base_store'; export interface EndOfRoundTimestampData { timestamp: number; } export declare const endOfRoundTimestampSchema: { $id: string; type: string; properties: { timestamp: { dataType: string; fieldNumber: number; }; }; required: string[]; }; export declare class EndOfRoundTimestampStore extends BaseStore<EndOfRoundTimestampData> { schema: { $id: string; type: string; properties: { timestamp: { dataType: string; fieldNumber: number; }; }; required: string[]; }; }