11 lines
149 B
TypeScript
11 lines
149 B
TypeScript
export type MutexOptions = {
|
|
redis?: {
|
|
host?: string;
|
|
port?: number;
|
|
};
|
|
mutex?: {
|
|
checkInterval?: number;
|
|
ttl: number;
|
|
};
|
|
};
|