UNPKG

emsi-lib

Version:

A EMSI (Emergency Management Shared Information) object model to manipulate emergency messages defined in ISO/TR 22351 document

10 lines (9 loc) 334 B
import { Default } from '../../common/default'; import { ContactType, Detail } from "../../common/types"; export declare class Contact extends Default { contact: ContactType; detail: Detail; constructor(contact: ContactType, detail: Detail); static default(): Contact; assign(source: Record<string, any>): this; }