Sam A. Horvath-Hunt
Sam A. Horvath-Hunt
Blocked awaiting fp-ts 2.13.
Maybe let's just copy fp-ts for now. Some improvements recently landed: https://github.com/gcanti/fp-ts/pull/1792
Happened again without recovering display. At least in this case the lock script hooked into suspension was broken, that may be relevant.
Lock script fixed ^ but it's happened twice this week.
Happened twice this week but each time it could be fixed by unplugging and replugging one or two output video cables. I wonder if it's related to having a powered...
On a recent nixpkgs-unstable HLS targeting GHC 9.0.2 HLint now works, but stylish-haskell still doesn't. Might be an issue specific to stylish-haskell; tempted to look at other formatters anyway.
These aren't production-ready, but they're a start. ```typescript declare module 'react-copy-write' { import { Component } from 'react'; interface ProviderProps { children: JSX.Element | JSX.Element[]; initialState?: object; } class Provider...
@davej I've created a formal type definition [here](https://github.com/SamHH/DefinitelyTyped/tree/react-copy-write/types/react-copy-write) that can be merged into DefinitelyTyped via PR once they're a bit further along. Feel free to contribute there until it's ready...
@aweary @davej The TypeScript documentation [here](https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html) says that if the project is not written in TypeScript then it's better for the types to be stored in the DefinitelyTyped repo.
@aweary Yes, using `any` means you're basically telling the compiler that you don't know what it is. I'm unsure how to solve this, any feedback from more experienced TS folk...