Spread operator in TypeScript is not sound!!

When I was building MigaCSS, I met a bug that I wondered why TypeScript couldnā€™t catch it.

Here is some code illustrating the issue.

tsx
import React from 'react'
Ā 
function A() {
const props = {
onClick: () => {},
jser: 'dev'
}
Ā 
return <B {...props}/>
}
Ā 
function B(props: {onClick:() => void}) {
return <div {...props}/>
}
tsx
import React from 'react'
Ā 
function A() {
const props = {
onClick: () => {},
jser: 'dev'
}
Ā 
return <B {...props}/>
}
Ā 
function B(props: {onClick:() => void}) {
return <div {...props}/>
}

I accidentally passed down props to child components, "jser" is not on B but TypeScript doesnā€™t complain.

Iā€™d expect it to be complained because it does if not with spread.

tsx
import React from 'react'
Ā 
function A() {
const props = {
onClick: () => {},
jser: 'dev'
}
Ā 
return <B onClick={props.onClick} jser={props.jser}/>
Type '{ onClick: () => void; jser: string; }' is not assignable to type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'. Property 'jser' does not exist on type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'.2322Type '{ onClick: () => void; jser: string; }' is not assignable to type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'. Property 'jser' does not exist on type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'.
}
Ā 
function B(props: React.ComponentProps<'div'>) {
return <div {...props}/>
}
tsx
import React from 'react'
Ā 
function A() {
const props = {
onClick: () => {},
jser: 'dev'
}
Ā 
return <B onClick={props.onClick} jser={props.jser}/>
Type '{ onClick: () => void; jser: string; }' is not assignable to type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'. Property 'jser' does not exist on type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'.2322Type '{ onClick: () => void; jser: string; }' is not assignable to type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'. Property 'jser' does not exist on type 'IntrinsicAttributes & ClassAttributes<HTMLDivElement> & HTMLAttributes<HTMLDivElement>'.
}
Ā 
function B(props: React.ComponentProps<'div'>) {
return <div {...props}/>
}

Considering JSX is merely a syntax suger, we can simplify the repro code as below.

ts
type A = {
a: string
}
Ā 
const a: A = {
a: 'jser',
b: 'dev'
Type '{ a: string; b: string; }' is not assignable to type 'A'. Object literal may only specify known properties, and 'b' does not exist in type 'A'.2322Type '{ a: string; b: string; }' is not assignable to type 'A'. Object literal may only specify known properties, and 'b' does not exist in type 'A'.
}
Ā 
const b = {
a: 'jser',
b: 'dev'
}
Ā 
// Why doesn't following code get complained?
const c: A = {
...b
}
Ā 
ts
type A = {
a: string
}
Ā 
const a: A = {
a: 'jser',
b: 'dev'
Type '{ a: string; b: string; }' is not assignable to type 'A'. Object literal may only specify known properties, and 'b' does not exist in type 'A'.2322Type '{ a: string; b: string; }' is not assignable to type 'A'. Object literal may only specify known properties, and 'b' does not exist in type 'A'.
}
Ā 
const b = {
a: 'jser',
b: 'dev'
}
Ā 
// Why doesn't following code get complained?
const c: A = {
...b
}
Ā 

After doing a little search I found this issue, and got to know that this is by design.

When you spread in c, you donā€™t know what properties it really has. So TypeScript doesnā€™t really know if you have excess properties in some cases.

Yeah, I donā€™t know much about the TypeScript internals, but Flow does a great job alerting on this issue.

Before TypeScript improves on this issue, just remember that spread leads to unsound type in TypeScript, it is best to explicit type the variable before spreading.

tsx
import React from 'react'
Ā 
function A() {
const props: React.ComponentProps<typeof B> = {
onClick: () => {},
jser: 'dev'
Type '{ onClick: () => void; jser: string; }' is not assignable to type '{ onClick: () => void; }'. Object literal may only specify known properties, and 'jser' does not exist in type '{ onClick: () => void; }'.2322Type '{ onClick: () => void; jser: string; }' is not assignable to type '{ onClick: () => void; }'. Object literal may only specify known properties, and 'jser' does not exist in type '{ onClick: () => void; }'.
}
Ā 
return <B {...props}/>
}
Ā 
function B(props: {onClick:() => void}) {
return <div {...props}/>
}
tsx
import React from 'react'
Ā 
function A() {
const props: React.ComponentProps<typeof B> = {
onClick: () => {},
jser: 'dev'
Type '{ onClick: () => void; jser: string; }' is not assignable to type '{ onClick: () => void; }'. Object literal may only specify known properties, and 'jser' does not exist in type '{ onClick: () => void; }'.2322Type '{ onClick: () => void; jser: string; }' is not assignable to type '{ onClick: () => void; }'. Object literal may only specify known properties, and 'jser' does not exist in type '{ onClick: () => void; }'.
}
Ā 
return <B {...props}/>
}
Ā 
function B(props: {onClick:() => void}) {
return <div {...props}/>
}

šŸ˜³ Would you like to share my post to more people ?    

ā® Prev: A real example of concurrent mode in Shaku - switch to `useDeferredValue()` instead of throttling or debouncing.

Next: How UnoCSS works internally with Vite? āÆ