All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
17 lines
267 B
TypeScript
17 lines
267 B
TypeScript
export interface IPackage {
|
|
id:string
|
|
name:string;
|
|
enabled?:boolean;
|
|
dataDate?:Date;
|
|
dataEndDate?:Date;
|
|
}
|
|
|
|
export interface IPackages {
|
|
[id: string]: IPackage[];
|
|
}
|
|
|
|
export interface IPackageMap {
|
|
[id: string]: IPackage;
|
|
}
|
|
|