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
/
image-availability.entity.d.ts
9 lines
(8 loc)
•
213 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
BaseEntity
}
from
'typeorm'
;
import
{
Image
,
Remote
}
from
'.'
;
export
declare
class
ImageAvailability
extends
BaseEntity
{
id
:
number
;
available
:
boolean
;
image
:
Image
;
remote
:
Remote
; }