Michael Altamirano

Results 5 comments of Michael Altamirano

> I've created a [ts-migration](https://github.com/emotion-js/emotion/tree/ts-migration) branch. It seems to me that the easiest approach to do this would be to actually: > > 1. drop Flow entirely - from the...

> Yeah, it sounds legit, as I use other libs that are still using Emotion 10. (like StoryBook indeed) > > > My fix is to do patch-package and comment-out...

There is some information about the plugins via the CLI, though I agree that some Github documentation may be helpful. My steps for discovering this were: 1. Reading the general...

@drwpow Isn't it the case that OpenAPI 3.1 no longer supports the `nullable` property, instead preferring `"null"` to be added to the `type`? https://www.openapis.org/blog/2021/02/16/migrating-from-openapi-3-0-to-3-1-0. `redocly` in particular lints `nullable: true`...

This works if you type the properties in the custom event as potentially optional for compatibility with `Event`, rather than using `CustomEvent` directly. [TypeScript playground link.](https://www.typescriptlang.org/play?#code/JYOwLgpgTgZghgYwgAgMoHsC2EDCBXAZzCwFEA3CcZCAD0hABMDlzKxkBvAKGWQYjBxgAGwD8ALk49eyEBCIQGABSjoADtDABPSQCN06YRDggA3NIC+XK1wDuoBulsA6OAwatwAGWAK5UAAoAcgIsXEJiTE8wIIAaZACICnBJDGx8IlJksABKZABeAD4pXmAYBKS2Z35BETzuGWQAeibZdGRtDWooVShmUDQwjMjo6V4W6mzqgSFhZF9kADl0EEW8YWE4XSN5kAJgfmQEFYZgMGAVuDnOlABzPDgoBktrHKA) ```tsx interface SomeCustomEvent extends...