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
/
request
/
types
/
location-information-request.type.d.ts
9 lines
(8 loc)
•
285 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Location
}
from
"../../location/location"
;
type
LIR_ParserMessage =
"LocationInformation.DONE"
|
"ERROR"
;
export
type
LIR_Response = {
locations
:
Location
[];
message
: LIR_ParserMessage |
null
; };
export
type
LIR_Callback =
(
response
: LIR_Response
) =>
void
;
export
{};