File tree 2 files changed +6
-6
lines changed
src/main/scala/org/scalajs/dom
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -173,12 +173,12 @@ trait ResponseInit extends js.Object {
173
173
@ js.native
174
174
trait Body extends js.Object {
175
175
176
- /* Contains a Boolean that indicates whether the body has been read.
177
- */
176
+ /** Contains a Boolean that indicates whether the body has been read.
177
+ */
178
178
def bodyUsed : Boolean = js.native
179
179
180
- /* Takes a Response stream and reads it to completion. It returns a promise that resolves with an ArrayBuffer.
181
- */
180
+ /** Takes a Response stream and reads it to completion. It returns a promise that resolves with an ArrayBuffer.
181
+ */
182
182
def arrayBuffer (): js.Promise [ArrayBuffer ] = js.native
183
183
184
184
/** Takes a Response stream and reads it to completion. It returns a promise that resolves with a Blob.
Original file line number Diff line number Diff line change @@ -868,9 +868,9 @@ object KeyFormat {
868
868
@ js.native
869
869
trait RSAPublicKey extends js.Object {
870
870
871
- /* modulus, as a base64 URL encoded String */
871
+ /** modulus, as a base64 URL encoded String */
872
872
def n : String = js.native
873
873
874
- /* exponent, as a base64 URL encoded String */
874
+ /** exponent, as a base64 URL encoded String */
875
875
def e : String = js.native
876
876
}
You can’t perform that action at this time.
0 commit comments