UNPKG

@iota-pico/core

Version:
12 lines (11 loc) 261 B
/** * Represents a class which can provide the time. * @interface */ export interface ITimeService { /** * Returns the number of milliseconds since 1970/01/01. * @returns Number of milliseconds. */ msSinceEpoch(): number; }