UNPKG
@randombenj/db
Version:
latest (1.10.2-alpha.0)
unstable (1.10.2-alpha.41)
1.10.2-alpha.42
1.10.2-alpha.41
1.10.2-alpha.0
Display, search and copy LXD-images using a web interface.
github.com/Roche/lxdhub
Roche/lxdhub
@randombenj/db
/
lib
/
models
/
remote.entity.d.ts
12 lines
(11 loc)
•
297 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
BaseEntity
}
from
'typeorm'
;
import
{
ImageAvailability
}
from
'.'
;
export
declare
class
Remote
extends
BaseEntity
{
id
:
number
;
serverUrl
:
string
;
protocol
:
string
;
readonly
:
boolean
;
public
:
boolean
;
name
:
string
;
imageAvailabilities
:
ImageAvailability
[]; }