We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29feb1b commit aff5a6aCopy full SHA for aff5a6a
dotnet/src/webdriver/BiDi/Modules/Script/RemoteValue.cs
@@ -97,12 +97,12 @@ public abstract record RemoteValue
97
}
98
99
100
-public record RemoteBigIntValue(string Value) : PrimitiveProtocolRemoteValue;
101
-
102
public record RemoteNumberValue(double Value) : PrimitiveProtocolRemoteValue;
103
104
public record RemoteBooleanValue(bool Value) : PrimitiveProtocolRemoteValue;
105
+public record RemoteBigIntValue(string Value) : PrimitiveProtocolRemoteValue;
+
106
public record RemoteStringValue(string Value) : PrimitiveProtocolRemoteValue;
107
108
public record RemoteNullValue : PrimitiveProtocolRemoteValue;
0 commit comments