diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-05-28 09:33:11 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 09:33:11 +1000 |
commit | 59237d195f6afa0d8927128751ba5ff4562d7cce (patch) | |
tree | 0aa28aff006eea751752e6160093f7631e99ad49 /cli/dts/lib.dom.iterable.d.ts | |
parent | 56f6e57438c23f75e23e28f45ad0f76b94379d59 (diff) |
feat(cli): upgrade to TypeScript 4.3 (#9960)
Diffstat (limited to 'cli/dts/lib.dom.iterable.d.ts')
-rw-r--r-- | cli/dts/lib.dom.iterable.d.ts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/cli/dts/lib.dom.iterable.d.ts b/cli/dts/lib.dom.iterable.d.ts index ebd56d767..7e86bc19b 100644 --- a/cli/dts/lib.dom.iterable.d.ts +++ b/cli/dts/lib.dom.iterable.d.ts @@ -139,7 +139,7 @@ interface IDBDatabase { interface IDBObjectStore { /** * Creates a new index in store with the given name, keyPath and options and returns a new IDBIndex. If the keyPath and options define constraints that cannot be satisfied with the data already in store the upgrade transaction will abort with a "ConstraintError" DOMException. - * + * * Throws an "InvalidStateError" DOMException if not called within an upgrade transaction. */ createIndex(name: string, keyPath: string | Iterable<string>, options?: IDBIndexParameters): IDBIndex; @@ -287,10 +287,6 @@ interface WEBGL_draw_buffers { drawBuffersWEBGL(buffers: Iterable<GLenum>): void; } -interface WebAuthentication { - makeCredential(accountInformation: Account, cryptoParameters: Iterable<ScopedCredentialParameters>, attestationChallenge: Int8Array | Int16Array | Int32Array | Uint8Array | Uint16Array | Uint32Array | Uint8ClampedArray | Float32Array | Float64Array | DataView | ArrayBuffer | null, options?: ScopedCredentialOptions): Promise<ScopedCredentialInfo>; -} - interface WebGL2RenderingContextBase { clearBufferfv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLfloat>, srcOffset?: GLuint): void; clearBufferiv(buffer: GLenum, drawbuffer: GLint, values: Iterable<GLint>, srcOffset?: GLuint): void; |