angular-cesium-ivy
Version:
Angular library for working with Angular-Cesium.
13 lines • 498 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;
finishCreation: () => boolean;
}
//# sourceMappingURL=editor-observable.d.ts.map