16 lines
263 B
TypeScript
16 lines
263 B
TypeScript
type Environment = {
|
|
port: number;
|
|
host: string;
|
|
development: boolean;
|
|
};
|
|
|
|
type CassandraConfig = {
|
|
host: string;
|
|
port: number;
|
|
keyspace: string;
|
|
username: string;
|
|
password: string;
|
|
datacenter: string;
|
|
contactPoints: string[];
|
|
authEnabled: boolean;
|
|
};
|