lib / config.d.ts
export declare const configSchematics: import("@lmstudio/sdk").ConfigSchematics<{
dbType: {
key: "dbType";
type: string;
valueTypeKey: "string";
};
} & {
host: {
key: "host";
type: string;
valueTypeKey: "string";
};
} & {
port: {
key: "port";
type: number;
valueTypeKey: "numeric";
};
} & {
username: {
key: "username";
type: string;
valueTypeKey: "string";
};
} & {
password: {
key: "password";
type: string;
valueTypeKey: "string";
};
} & {
database: {
key: "database";
type: string;
valueTypeKey: "string";
};
} & {
connectionPool: {
key: "connectionPool";
type: number;
valueTypeKey: "numeric";
};
}>;
export type DatabaseConfig = {
dbType: string;
host: string;
port: number;
username: string;
password: string;
database: string;
connectionPool: number;
};
//# sourceMappingURL=config.d.ts.map