forked from MapComplete/MapComplete
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
|
import {UIEventSource} from "../UIEventSource";
|
||
|
|
||
|
export default interface FeatureSource {
|
||
|
|
||
|
features : UIEventSource<any[]>;
|
||
|
freshness: UIEventSource<Date>;
|
||
|
|
||
|
}
|