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