You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TS2345: Argument of type '(VNode<HTMLHeadingElement, HTMLHeadingElementProperties> | VNode<HTMLButtonElement, HTMLButtonEle...' is not assignable to parameter of type 'HyperscriptChildren'.
Type '(VNode<HTMLHeadingElement, HTMLHeadingElementProperties> | VNode<HTMLButtonElement, HTMLButtonEle...' is not assignable to type 'ReadonlyArray<string | VNode<Node, VNodeProps<Element, VNodeEvents<Element, ElementEventMap>>> | ...'.
Types of property '[Symbol.iterator]' are incompatible.
Type '() => IterableIterator<VNode<HTMLHeadingElement, HTMLHeadingElementProperties> | VNode<HTMLButton...' is not assignable to type '() => IterableIterator<string | VNode<Node, VNodeProps<Element, VNodeEvents<Element, ElementEvent...'.
Type 'IterableIterator<VNode<HTMLHeadingElement, HTMLHeadingElementProperties> | VNode<HTMLButtonElemen...' is not assignable to type 'IterableIterator<string | VNode<Node, VNodeProps<Element, VNodeEvents<Element, ElementEventMap>>>...'.
Type 'VNode<HTMLHeadingElement, HTMLHeadingElementProperties> | VNode<HTMLButtonElement, HTMLButtonElem...' is not assignable to type 'string | VNode<Node, VNodeProps<Element, VNodeEvents<Element, ElementEventMap>>> | null'.
Type 'VNode<HTMLHeadingElement, HTMLHeadingElementProperties>' is not assignable to type 'string | VNode<Node, VNodeProps<Element, VNodeEvents<Element, ElementEventMap>>> | null'.
Type 'VNode<HTMLHeadingElement, HTMLHeadingElementProperties>' is not assignable to type 'VNode<Node, VNodeProps<Element, VNodeEvents<Element,ElementEventMap>>>'.
Type 'HTMLHeadingElementProperties' is not assignable to type 'VNodeProps<Element, VNodeEvents<Element, ElementEventMap>>'.
Types of property 'on' are incompatible.
Type 'VNodeEvents<HTMLHeadingElement, HTMLElementEventMap> | undefined' is not assignable to type 'VNodeEvents<Element, ElementEventMap>| undefined'.
Type 'VNodeEvents<HTMLHeadingElement, HTMLElementEventMap>' is not assignable to type 'VNodeEvents<Element, ElementEventMap> | undefined'.
Type 'VNodeEvents<HTMLHeadingElement, HTMLElementEventMap>' is not assignable to type 'VNodeEvents<Element, ElementEventMap>'.
Types of property '"ariarequest"' are incompatible.
Type 'EventHandler<HTMLHeadingElement, Event> | undefined' is not assignable to type 'EventHandler<Element, Event> | undefined'.
Type 'EventHandler<HTMLHeadingElement, Event>' is not assignable to type 'EventHandler<Element, Event> | undefined'.
Type 'EventHandler<HTMLHeadingElement, Event>' is not assignable to type 'EventHandler<Element, Event>'.
Types of parameters 'event' and 'event' are incompatible.
Type 'VNodeEvent<Element, Event>' is not assignable to type 'VNodeEvent<HTMLHeadingElement, Event>'.
Type 'VNodeEvent<Element, Event>' is not assignable to type '{ target: HTMLHeadingElement; }'.
Types of property 'target' are incompatible.
Type 'EventTarget & Element' is not assignable to type 'HTMLHeadingElement'.
Property 'align' is missing in type 'EventTarget & Element'.
In vscode it shows up like this (this is the counter example):
The text was updated successfully, but these errors were encountered:
I don’t know about this issue. We use @typed/test successfully in two current code bases using TS 2.9 and 2.8. However, motorcycle.ts is not involved in those projects.
Motorcycle.ts does not compile if typescript script mode is turned on. Here is my tsconfig.json:
I get the following error:
In vscode it shows up like this (this is the counter example):
The text was updated successfully, but these errors were encountered: