We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The following code fails on TS1.4 export type TypedArray<A> = A[];
export type TypedArray<A> = A[];
Note that it uses generic typing to define the type TypedArray.
Surrounding the arrow brackets are the following compilation errors error TS1005: '=' expected. error TS1005: '(' expected.