MapComplete/Logic/Actors/FeatureSource.ts

8 lines
174 B
TypeScript
Raw Normal View History

2021-01-03 00:19:42 +01:00
import {UIEventSource} from "../UIEventSource";
export default interface FeatureSource {
features : UIEventSource<any[]>;
freshness: UIEventSource<Date>;
}