@greenmice/ngx-cesium
Version:
Angular library for working with Cesium.
17 lines (16 loc) • 405 B
TypeScript
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;
}