projects/angular-cesium/src/lib/angular-cesium-widgets/models/basic-edit-update.ts
Properties |
|
editAction |
editAction:
|
Type : EditActions
|
editMode |
editMode:
|
Type : EditModes
|
id |
id:
|
Type : string
|
labelsRenderFn |
labelsRenderFn:
|
Type : function
|
Optional |
updateLabels |
updateLabels:
|
Type : LabelProps[]
|
Optional |
import { EditModes } from './edit-mode.enum';
import { EditActions } from './edit-actions.enum';
import { LabelProps } from './label-props';
export interface BasicEditUpdate<T> {
id: string;
editMode: EditModes;
editAction: EditActions;
labelsRenderFn?: (update: T, labels: LabelProps[]) => LabelProps[];
updateLabels?: LabelProps[];
}