UNPKG

ojp-sdk

Version:

OJP (Open Journey Planner) Javascript SDK

13 lines (12 loc) 423 B
import { TreeNode } from "../xml/tree-node"; export declare class Address { addressCode: string; addressName: string | null; topographicPlaceRef: string | null; topographicPlaceName: string | null; street: string | null; houseNumber: string | null; postCode: string | null; constructor(addressCode: string); static initWithLocationTreeNode(locationTreeNode: TreeNode): Address | null; }