-
### List the website(s) you're having issues:
`https://www.lydogbilde.no/test/hi-fi/hegel-h120` (and also all other sites with any `YouTube` embeds of any kind.)
### What happens?
…
-
Tests in `@hegel/core` failed if we use `master` version of `@hegel/typings`.
-
**TypeScript Version:** 4.1.0-dev.20200907
**Search Terms:**
Generic, Keys, Record
**Code**
```ts
type CustomRecord = Record
function mapValues (entries: CustomRecord): string[] {
retu…
-
Hegel core errors out when you call a method on an ambiguously typed object and pass it a function, even if that function is strongly typed.
Example: https://hegel.js.org/try#GYVwdgxgLglg9mABMAFAQw…
-
https://github.com/JSMonk/hegel/blob/5a0217148d07b0283c966f277be1b0d37cb82c3a/packages/language-server/package.json#L52
I can't compile the extension for vscode using "npm run compile" in "hegel / …
-
In the example
```js
// Hegel will infer "promisify" as "((_c) => _q) => (_c) => Promise"
const promisify = fn => arg => Promise.resolve(fn(arg));
// There, Hegel will infer "(_c) => Pr…
-
Should we be able to create `$Intersection` of generic object types?
```ts
type Functor = {
map: (fn: (value: T) => R) => Functor
}
type Apply = {
apply: (apply: Apply R>) => Apply
}
/…
-
I had write such code:
```typescript
class Me {
name: string;
}
const b = new Me();
```
And get such error:
```bash
[
HegelError: Property "name" has a type, but doesn't have an initia…
-
I saw that the website documentation say that the type system has no "any" in it.
Then I read the type definition of the builtin `Array` ( https://github.com/JSMonk/hegel/blob/master/packages/typin…
-
https://hegel.js.org/try#MYewdgzgLgBAZiEMC8NoCcUD41XQOihAFUAHUgU3QGEBDCCgCgEoAoVhERgcgAsKANgJDdmQA
I agree with a type of foo function, but when I try to apply string to this function Hegel returns…