@rr0/place
Version:
Place representation API
10 lines (9 loc) • 377 B
TypeScript
import { Elevation, Place } from "./Place.js";
import { PlaceLocation } from "./location/PlaceLocation.js";
export declare class NamedPlace extends Place {
readonly name: string;
readonly elevation?: Elevation;
readonly dirName?: string;
constructor(name: string, locations?: PlaceLocation[], elevation?: Elevation, dirName?: string);
toString(): string;
}