Closed
Description
TypeScript Version: 2.9.0-dev.201xxxxx
Search Terms:
Code
Format the following:
type NumberOrString = {
a: number
} & {
b: string
};
Expected behavior:
type NumberOrString = {
a: number
} & {
b: string
};
Actual behavior:
type NumberOrString = {
a: number
} & {
b: string
};
Playground Link:
Related Issues: