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
/
architecture.entity.d.ts
9 lines
(8 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
BaseEntity
}
from
'typeorm'
;
import
{
OperatingSystemArchitecture
}
from
'.'
;
export
declare
class
Architecture
extends
BaseEntity
{
id
:
number
;
processorName
:
string
;
humanName
:
string
;
osArchitectures
:
OperatingSystemArchitecture
[]; }