Make props of ConnectionState optional (#7093)

This commit is contained in:
Michal Grňo
2023-05-18 18:00:12 +02:00
committed by GitHub
parent 0a737a53ef
commit d3939f7a48

View File

@@ -37,8 +37,8 @@ import * as serializationRegistry from './registry.js';
* Represents the state of a connection.
*/
export interface ConnectionState {
shadow: State | undefined;
block: State | undefined;
shadow?: State;
block?: State;
}
/**