DetachHead
DetachHead
@bradnak try updating `@types/express-serve-static-core` to >=4.17.21, see https://github.com/DefinitelyTyped/DefinitelyTyped/pull/52775
@Joshandrews43 looks like the same issue as https://github.com/DefinitelyTyped/DefinitelyTyped/issues/53397#issuecomment-937261125, have you tried updating `@types/express`?
maybe it could fade out or something? currently it looks unintended imo  though this doesn't look much better, idk i'm not a designer lol
some good points were raised on the typescript issue for the this feature: https://github.com/microsoft/TypeScript/issues/36146#issuecomment-573925535 https://github.com/microsoft/TypeScript/issues/36146#issuecomment-1018010023 the biggest issue imo being the concern that it would make users will be less...
so basically, broken/incomplete stubs should be fixed upstream
why not just keep the name `strict` from upstream instead of creating a seperate `non-strict` mode? then just make `strict` enabled by default
i usually work around it by defining a new local variable (which is the recommended solution in dart), which seems safer than using a non-null assertion ```kt var a: Int?...
> TODO: constraints in this PR or a seperate one? is there an issue for ir
here's a workaround to take a screenshot with no delay: ```ts const base64 = (await (await page.context().newCDPSession(page)).send('Page.captureScreenshot')).data ``` it would be nice if playwright's `screenshot` method had an option to...
