8 lines
114 B
TypeScript
8 lines
114 B
TypeScript
export interface RedisConfig {
|
|
username: string
|
|
password: string
|
|
host: string
|
|
port: number
|
|
db: number
|
|
}
|