UNPKG

@rr0/cms

Version:

RR0 Content Management System (CMS)

18 lines (17 loc) 568 B
import { NuforcState } from "./NuforcState.js"; import { NuforcCountry } from "./NuforcCountry.js"; import { NuforcShape } from "./NuforcShape.js"; import { Level2Date as EdtfDate } from "@rr0/time"; export interface NuforcCaseSummary { readonly id: string; readonly time: EdtfDate; readonly url: string; readonly city: string; readonly state: NuforcState; readonly country: NuforcCountry; readonly shape: NuforcShape; readonly summary: string; readonly reportDate: Date; readonly postDate: Date; readonly image: boolean; }