Make isEditable optional
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
This commit is contained in:
parent
a39578e1a4
commit
593fa78f13
@ -5,7 +5,7 @@ export interface IItem extends IListItem {
|
||||
geometry?: any;
|
||||
tags:string[],
|
||||
data?:any
|
||||
isEditable:boolean;
|
||||
isEditable?:boolean;
|
||||
}
|
||||
|
||||
export class Item implements IItem {
|
||||
@ -23,7 +23,7 @@ export class Item implements IItem {
|
||||
public size?: number;
|
||||
public state?: number;
|
||||
public data?:any;
|
||||
public isEditable:boolean;
|
||||
public isEditable?:boolean;
|
||||
|
||||
constructor() {
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user