import { DMap } from'./DMap'/**
* The **LiveDMap<K, V>()** class
* live version of DMap
* This usually return from live data sources e.g. databases
* @categoryLib
*/exportclassLiveDMap<K extendsstring, V = any> extendsDMap<K, V> {
publicisLive() {
returntrue
}
}