UNPKG

@rr0/data

Version:
21 lines (20 loc) 377 B
/** * Any kind of data on RR0 (see implementing classes). */ export class RR0Data { constructor( /** * The data type */ type) { this.type = type; /** * External data from which this data was devised. */ this.sources = []; /** * Events of the data. */ this.events = []; } }