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;
|
geometry?: any;
|
||||||
tags:string[],
|
tags:string[],
|
||||||
data?:any
|
data?:any
|
||||||
isEditable:boolean;
|
isEditable?:boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Item implements IItem {
|
export class Item implements IItem {
|
||||||
@ -23,7 +23,7 @@ export class Item implements IItem {
|
|||||||
public size?: number;
|
public size?: number;
|
||||||
public state?: number;
|
public state?: number;
|
||||||
public data?:any;
|
public data?:any;
|
||||||
public isEditable:boolean;
|
public isEditable?:boolean;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user