Export more types, add stub for common-map library
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-07-17 11:51:14 +02:00
parent 4ab7e39b8e
commit 6f28561303
18 changed files with 313 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
import { NgModule } from '@angular/core';
import { CommonMapComponent } from './common-map.component';
@NgModule({
declarations: [CommonMapComponent],
imports: [
],
exports: [CommonMapComponent]
})
export class CommonMapModule { }