mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
33 lines
625 B
TypeScript
33 lines
625 B
TypeScript
//@filename: file.tsx
|
|
//@jsx: preserve
|
|
declare module JSX {
|
|
interface Element { }
|
|
interface IntrinsicElements {
|
|
test1: Attribs1;
|
|
test2: Attribs2;
|
|
}
|
|
}
|
|
interface Attribs1 {
|
|
x: string;
|
|
}
|
|
|
|
interface Attribs2 {
|
|
toString(): string;
|
|
}
|
|
|
|
function make1<T extends {x: string}> (obj: T) {
|
|
return <test1 {...obj} />; // OK
|
|
}
|
|
|
|
function make2<T extends {x: number}> (obj: T) {
|
|
return <test1 {...obj} />; // Error (x is number, not string)
|
|
}
|
|
|
|
function make3<T extends {y: string}> (obj: T) {
|
|
return <test1 {...obj} />; // Error, missing x
|
|
}
|
|
|
|
|
|
<test1 {...{}} />; // Error, missing x
|
|
<test2 {...{}} />; // Error, missing toString
|