Typescript error when creating WebrtcProvider

Hello there,

When I create a WebRTC Provider with a signalling server specified like this:

const provider = new WebrtcProvider(props.roomId, ydoc, { signaling: ['ws://localhost:4444'] })

I get Typescript errors like this:

error TS2345: Argument of type '{ signaling: string[]; }' is not assignable to parameter of type '{ signaling: string[]; password: string | null; awareness: Awareness; maxConns: number; filterBcConns: boolean; peerOpts: any; }'.

It seems that the optional json keys aren’t seen as optional in the typing system. Is there a types import that i’m missing in package.json? My only yjs imports are as follows:

"y-indexeddb": "^9.0.6",
"y-quill": "^0.1.4",
"y-webrtc": "^10.2.0",
"yjs": "^13.5.11"