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.webworker.iterable.d.ts | |
parent | 56f6e57438c23f75e23e28f45ad0f76b94379d59 (diff) |
feat(cli): upgrade to TypeScript 4.3 (#9960)
Diffstat (limited to 'cli/dts/lib.webworker.iterable.d.ts')
-rw-r--r-- | cli/dts/lib.webworker.iterable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.webworker.iterable.d.ts b/cli/dts/lib.webworker.iterable.d.ts index cef75d9e6..2f3bdc936 100644 --- a/cli/dts/lib.webworker.iterable.d.ts +++ b/cli/dts/lib.webworker.iterable.d.ts @@ -80,7 +80,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; |