refactor: state types of generics explicitly

This commit is contained in:
Wieland Schöbl
2019-06-27 12:16:29 +02:00
parent ceab7cc7ef
commit 89eb10451c

View File

@@ -82,7 +82,8 @@ export interface SCFloorFeatureCollectionWithPlaces<T extends GeometryObject>
* A feature with a place * A feature with a place
*/ */
export interface SCFloorFeatureWithPlace<T extends GeometryObject> export interface SCFloorFeatureWithPlace<T extends GeometryObject>
extends Feature<T> { // tslint:disable-next-line:no-any TODO
extends Feature<T, any> {
/** /**
* The place of the feature * The place of the feature
*/ */