UNPKG

@greenmice/ngx-cesium

Version:
17 lines (16 loc) 405 B
import { ActionType } from './action-type.enum'; import { AcEntity } from './ac-entity'; /** * Interface of Angular2Cesium notification. * ac-layer receives an observer of AcNotifications */ export interface AcNotification { id: string; entity?: AcEntity; actionType: ActionType; } export declare class AcNotification { id: string; entity?: AcEntity; actionType: ActionType; }