mapcomplete/Logic/FeatureSource/FeatureSource.ts

9 lines
221 B
TypeScript
Raw Permalink Normal View History

2021-01-02 23:19:42 +00:00
import {UIEventSource} from "../UIEventSource";
export default interface FeatureSource {
features: UIEventSource<{feature: any, freshness: Date}[]>;
/**
* Mainly used for debuging
*/
name: string;
2021-01-02 23:19:42 +00:00
}