import { DependencyTypeEnum } from './DependencyTypeEnum';
/** Dependency parameters. A dependency can be a standard database (like MySQL or PostgreSQL) or a key-value store (like Redis or Memcached) for example */
export interface DependencyType {
    /** The name of this dependency */
    name?: string;
    /** The password associated with the user */
    password?: string;
    /** The port on where to contact this dependency */
    port?: number;
    /** The prefix to set to the data to distinguish between the data from the module and the rest */
    prefix?: string;
    /** The server on where your dependency is hosted */
    server?: string;
    /** Type */
    type: DependencyTypeEnum;
    /** The user to use to connect to this dependency */
    user?: string;
}
//# sourceMappingURL=DependencyType.d.ts.map