UNPKG

@randombenj/db

Version:

Display, search and copy LXD-images using a web interface.

9 lines (8 loc) 213 B
import { BaseEntity } from 'typeorm'; import { Image, Remote } from '.'; export declare class ImageAvailability extends BaseEntity { id: number; available: boolean; image: Image; remote: Remote; }