@eleven-am/pondsocket-nest 0.0.76 → 0.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -39,7 +39,7 @@ interface Metadata extends Omit<ModuleMetadata, 'controllers'> {
|
|
|
39
39
|
export interface AsyncMetadata extends Metadata {
|
|
40
40
|
inject?: any[];
|
|
41
41
|
imports?: any[];
|
|
42
|
-
useFactory: (...args: any[]) => Promise<RedisOptions
|
|
42
|
+
useFactory: (...args: any[]) => Promise<RedisOptions> | RedisOptions;
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
type NestFuncType<Event extends string, Payload extends PondMessage, Presence extends PondPresence, Assigns extends PondAssigns = PondAssigns> = {
|