UNPKG

nodemod

Version:

A collection of node modules for The Really Project

20 lines 489 B
export class PollingMeasure { name; duration; startTime; entryType = 'polling-measure'; constructor(name, duration, startTime) { this.name = name; this.duration = duration; this.startTime = startTime; } toJSON() { return { duration: this.duration, entryType: this.entryType, name: this.name, startTime: this.startTime, }; } } //# sourceMappingURL=polling-measure.js.map