@rr0/data
Version:
RR0 data model
15 lines (14 loc) • 330 B
TypeScript
import { RR0DataJson } from "../RR0DataJson.js";
import { RR0EventType } from "./RR0EventType.js";
export type RR0EventJson = RR0DataJson & {
type: "event";
eventType: RR0EventType;
/**
* When this event occurred.
*/
time?: string;
/**
* Where this event occurred
*/
place?: string;
};