Refactor Date to string
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
This commit is contained in:
@@ -15,10 +15,10 @@ export class Item implements IItem {
|
||||
public geometry?:any;
|
||||
public url?: string;
|
||||
public name?: string;
|
||||
public created?: Date;
|
||||
public updated?: Date;
|
||||
public dataDate?: Date;
|
||||
public dataEndDate?: Date;
|
||||
public created?: string;
|
||||
public updated?: string;
|
||||
public dataDate?: string;
|
||||
public dataEndDate?: string;
|
||||
public itemType?: string;
|
||||
public sourceTask?: string;
|
||||
public size?: number;
|
||||
|
@@ -2,10 +2,10 @@ export interface IListItem {
|
||||
url?: string;
|
||||
code?: string;
|
||||
name?: string;
|
||||
created?: Date;
|
||||
updated?: Date;
|
||||
dataDate?: Date;
|
||||
dataEndDate?: Date;
|
||||
created?: string;
|
||||
updated?: string;
|
||||
dataDate?: string;
|
||||
dataEndDate?: string;
|
||||
itemType?: string;
|
||||
sourceTask?: string;
|
||||
size?: number;
|
||||
|
Reference in New Issue
Block a user