🤖 Merge PR #46402 Fix incorrect circular inheritance by @sandersn

Typescript 4.0 check heritage clauses better than earlier versions, so
it now gives an error on

```ts
interface DeviceFilter extends Partial<DeviceFilter> { }
```

It was supposed to be

```ts
interface DeviceFilter extends Partial<DeviceFilterStrict> { }
```
This commit is contained in:
Nathan Shively-Sanders 2020-07-28 08:57:01 -07:00 committed by GitHub
parent d814e25a0e
commit 57fdcefb9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10365,7 +10365,7 @@ declare namespace chrome {
}
/** @since Chrome 39. */
interface DeviceFilter extends Partial<DeviceFilter> { }
interface DeviceFilter extends Partial<DeviceFilterStrict> { }
interface TransferInfo {
/**