This commit is contained in:
Reynold Liu 2022-02-24 11:13:11 +08:00 committed by GitHub
commit 1b0339bc6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
index.d.ts vendored
View file

@ -51,9 +51,12 @@ export interface VueSocketOptions {
useConnectionNamespace?: boolean useConnectionNamespace?: boolean
} }
}, },
// type declarations for optional options // type declarations for optional options
options?:{ options?:{
path?: string; path?: string,
transports?: Array<string>,
timeout?: number,
reconnection?: boolean
} }
} }