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) 323 B
import { Default } from "../../common/default"; import { LinkId, LinkRole } from "../../common/types"; export declare class Link extends Default { linkId: LinkId; linkRole?: LinkRole; constructor(linkId: LinkId, linkRole?: LinkRole); assign(source: Record<string, any>): this; static default(): Link; }