12 lines
233 B
TypeScript
12 lines
233 B
TypeScript
import { Moment } from "moment";
|
|
import { Location } from "./common";
|
|
|
|
export interface Provider {
|
|
id: string;
|
|
name: string;
|
|
shortName: string;
|
|
attribution?: string;
|
|
lastUpdate?: Moment;
|
|
location: Location;
|
|
}
|