fix: make uris optional

This commit is contained in:
Derrick Hammer 2023-08-31 18:49:00 -04:00
parent 2d8222b7a0
commit a4c5dd5b5b
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export interface Peer {
renderLocationUri(): string; renderLocationUri(): string;
} }
export type PeerConstructorOptions = { socket: any; uris: URL[] }; export type PeerConstructorOptions = { socket: any; uris?: URL[] };
// Define the static side of the class // Define the static side of the class
export interface PeerStatic { export interface PeerStatic {