UNPKG
rdview-service
Version:
latest (2.0.0)
2.0.0
1.1.2
1.1.1
1.1.0
1.0.0
Rdview service for loading road photos
rdview-service
/
src
/
interfaces
/
passage.ts
14 lines
(12 loc)
•
284 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{
Direction
}
from
'./direction'
;
import
{
View
}
from
'./view'
;
import
{
ViewType
}
from
'./view-type'
;
export
interface
Passage
{
id
:
string
;
date
:
Date
;
direction
:
Direction
;
viewType
:
ViewType
;
views
:
View
[];
rdKmFrom
:
number
;
rdKmTo
:
number
; }