fmt: fix interface fields alignment (#19866)

This commit is contained in:
Felipe Pena 2023-11-15 13:17:35 -03:00 committed by GitHub
parent 915ac4ed4f
commit 83b4167c19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 318 additions and 252 deletions

View file

@ -5,7 +5,7 @@ import js.promise
pub fn JS.fetch(input JS.String, init JS.Object) JS.Promise
pub interface JS.Body {
body JS.Uint8Array
body JS.Uint8Array
bodyUse JS.Boolean
blob() JS.Promise
json() JS.Promise
@ -14,11 +14,11 @@ pub interface JS.Body {
pub interface JS.Response {
JS.Body
ok JS.Boolean
ok JS.Boolean
redirected JS.Boolean
status JS.Number
status JS.Number
statusText JS.String
url JS.String
url JS.String
clone() JS.Response
}