UNPKG

ngx-diagrams

Version:

> Light Weight, Modular, Typed Diagram Engine for Angular

7 lines (6 loc) 205 B
import { ID } from './tool-kit.util'; export interface HashMap<T> { [key: string]: T; } export declare type Entries<T, K = string> = (readonly [K, T])[]; export declare type EntityMap<T> = Map<ID, T>;