@rr0/data
Version:
RR0 data model
21 lines (20 loc) • 377 B
JavaScript
/**
* 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 = [];
}
}