Start development server with:
npm run dev
Or, build with
npm run build
export interface RawDataEntry {
_last_edited_by: String,
_last_edited_date: Date,
_date_added: Date,
_raw_source: String,
_algorithm: String,
}
export interface RawEntity extends RawDataEntry{
type: String,
id: String,
country: String,
}
export interface RawPerson extends RawEntity {
dob: Date,
}
export interface RawOrganization extends RawEntity {
founding_date: String,
HeadOfOrg: String,
ProductServices: String,
TradeDescription: String,
PointOfContact: String,
revenue: Number,
}
export interface RawLink extends RawDataEntry{
type: String,
start_date: Date,
end_date: Date,
}