iceye-angular-cesium-fork
Version:
Angular library for working with Cesium.
12 lines (11 loc) • 416 B
TypeScript
import { Observable } from 'rxjs';
import { LabelProps } from './label-props';
export declare class EditorObservable<T> extends Observable<T> {
dispose: Function;
enable: Function;
disable: Function;
getLabels: () => LabelProps[];
getEditValue: () => T;
setLabelsRenderFn: (func: (update: T, labels: LabelProps[]) => LabelProps[]) => void;
updateLabels: (labels: LabelProps[]) => void;
}