UNPKG
ojp-sdk-v1
Version:
latest (0.18.6)
0.18.6
0.18.5
0.18.4
0.18.3
0.18.2
0.18.1
0.17.3
0.17.2
0.17.1
OJP (Open Journey Planner) Javascript SDK
github.com/openTdataCH/ojp-js
openTdataCH/ojp-js
ojp-sdk-v1
/
lib
/
location
/
topographic-place.d.ts
8 lines
(7 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
TreeNode
}
from
"../xml/tree-node"
;
export
declare
class
TopographicPlace
{
code
:
string
;
name
:
string
;
constructor
(
code
:
string
,
name
:
string
);
static
initWithLocationTreeNode
(
locationTreeNode
:
TreeNode
):
TopographicPlace
|
null
; }