South Drifter

Results 172 comments of South Drifter

I fixed this issue with an extra script for now: https://github.com/idea2app/Idea-React/pull/20/files#diff-2e2657e57be39ece5cd084a8ab00a31910948a08b0497fdb3134809852fff40d

> The error message is correct. `Model` refers to a value of a function parameter and you should use `typeof` to refer to the type of it. See https://www.typescriptlang.org/docs/handbook/2/typeof-types.html. I...

@whzx5byb Thanks your hack code, but I wonder that `class` syntax is both type & value, why should I use `typeof` in mixins?

@whzx5byb If I use both type & value of classes, your hack code shows a type error in my VS Code 1.71.0: ```diff - const register: MethodDecorator = () =>...

@whzx5byb Thanks your explanation & issue reporting. When I open my GitPod VS Code again, the same error hints... Just like #50161 said: sometimes...

两种可行方案: 1. 用[官方封装的插件](https://docs.microsoft.com/zh-cn/linkedin/consumer/integrations/self-serve/plugins/share-plugin) 2. OAuth 登录后调用[分享 API](https://docs.microsoft.com/zh-cn/linkedin/consumer/integrations/self-serve/share-on-linkedin)

1. Web Components 官方 polyfill 对 IE 11 `` 的支持貌似还有问题:https://stackoverflow.com/questions/66393616/angular11-webcomponents-polyfills-ie11-nojoy 2. SSR 的支持我正在研究**标准提案**:https://web.dev/declarative-shadow-dom/

@ljharb @jridgewell Only `map()` may be possible to add a **String-parameter signature**, for example `objects.map('name')`, adding a string parameter to other **Array methods with a callback parameter** may confuse developers:...

Sorry, I'm busy at work for months, I may go to write the spec after Chinese new year.

> * For polyfills, using the obvious `Array.from(set)` rather than a parallel array. "a parallel array" means `[...new Set([])]` ?