yifanwww
yifanwww
- EWDK If executed `python buildtap.py -b` to use EWDK to build the tap drivers, there would be errors that `The system cannot find the path specified`. Please see https://github.com/YF1999/tap-windows6/actions/runs/974225916...
Currently the `types` field targets to `types/bmapgl/index.d.ts` where defines GL JSAPI types in `BMapGL` namespace. There is a problem when we import this package:  Because of the `types` field,...
In [`@types/react`](https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts), they provide different `useReducer` overloads for the type support in different usages. There are totally 5 overloads. ```ts function useReducer( reducer: R, initializerArg: I, initializer: (arg: I) =>...
I saw this proposal https://github.com/sindresorhus/type-fest/issues/367 and the relevant context. I understand the need of `recurseIntoArrays: false`, but still get a little bit confused. This https://github.com/sindresorhus/type-fest/issues/356#issuecomment-1022114231 talks about the situation about...
`optionRender` should use generic type `OptionType` instead of the default type `BaseOptionType` code: https://github.com/react-component/select/blob/v14.13.0/src/Select.tsx#L145 ```diff optionRender?: ( - oriOption: FlattenOptionData, + oriOption: FlattenOptionData, info: { index: number }, ) =>...
This [doc](https://mobxjs.github.io/serializr/#additionalpropargs) implies that in `beforeDeserialize` we can do `callback(err)` to stop the deserialization and get a throwed error, just like we do it in `afterDeserialize`. However, the real behavior...