Renamed prefixes in angular.json
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-11-04 13:43:46 +01:00
parent c32214f544
commit cec43a636c
183 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
export interface IEventMessage {
eventType: string;
parentCode: string;
itemCode: string;
attributes: any;
}

View File

@@ -0,0 +1,28 @@
import { IListItem } from './list.item';
export interface IItem extends IListItem {
parentCode?: string;
geometry?: any;
tags:string[],
data?:any
}
export class Item implements IItem {
public code?:string;
public parentCode?:string;
public tags:string[];
public geometry?:any;
public url?: string;
public name?: string;
public created?: Date;
public updated?: Date;
public dataDate?: Date;
public itemType?: string;
public sourceTask?: string;
public size?: number;
public state?: number;
public data?:any;
constructor() {
}
}

View File

@@ -0,0 +1,7 @@
export interface IItemType {
icon?: string;
viewer?: string;
editor?: string;
isFolder?: boolean;
iconColor?: string;
}

View File

@@ -0,0 +1,5 @@
import { IItemType } from './item.type';
export interface IItemTypes{
[id: string]: IItemType;
};

View File

@@ -0,0 +1,15 @@
export interface IItemTask {
code?: string;
taskType?: string;
attributes?:any
}
export class ItemTask implements IItemTask {
public code?:string;
public taskType?: string;
public attributes?: any;
constructor() {
}
}

View File

@@ -0,0 +1,13 @@
export interface IListItem {
url?: string;
code?: string;
name?: string;
created?: Date;
updated?: Date;
dataDate?: Date;
itemType?: string;
sourceTask?: string;
size?: number;
state?: number;
thumbnail?: boolean;
}

View File

@@ -0,0 +1,4 @@
export interface ITypeaheadItem {
name: string;
type: string;
}

View File

@@ -0,0 +1,5 @@
export interface IUser {
code?: string;
name?: string;
email?: string;
}