UNPKG

@lxdhub/dbsync

Version:

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

22 lines (21 loc) 485 B
import { Interfaces } from '@lxdhub/common'; import { IDatabaseSettings } from '@lxdhub/db'; /** * The settings for the LXDHub Database synchronization * service */ export interface LXDHubDbSyncSettings { /** * The settings for lxd */ lxd?: Interfaces.ILXDRemoteAuthentication; /** * The LXDHub config */ lxdhubConfig: Interfaces.ILXDHubConfig; /** * The database settings */ database: IDatabaseSettings; force?: boolean; }