microsoft / microsoft/TypeScript
New Error: error TS2590: Expression produces a union type that is too complex to represent
Đang mở
@weswigham đang làm issue này rồi.
Từ ngày 22/7/2021.
Needs Investigation
Rescheduled
- Ngôn ngữ chính
- Go
- Star
- 111k
- Fork
- 14.4k
- Merge trung bình
- 1 ngày 19 giờ
- Pull request đã merge (30 ngày)
- 117
Mô tả
Baseline: TS 4.3.2
Test: e0648173719f8f2a01d775e326d8590556bb16cd
New error: error TS2590: Expression produces a union type that is too complex to represent.
Dependencies
"@fluentui/react-northstar": "^0.56.0",
"@types/react": "^16.9.11"
tsconfig.json
{
"compilerOptions": {
"strictNullChecks": true,
"skipLibCheck": true,
"jsx": "react",
}
}
test.tsx
import { Alignment, ComponentSlotStylesPrepared, TeamsThemeStylesProps, ToolbarCustomItemProps, ToolbarItemProps } from "@fluentui/react-northstar";
import * as React from "react";
// No error if this is absent or at the end of the file
type Unused = ComponentSlotStylesPrepared<NonNullable<TeamsThemeStylesProps["ToolbarCustomItem"]>, any>;
type ItemProps = ToolbarItemProps | ToolbarCustomItemProps;
type ItemPropsWithTooltip = ItemProps & {
key?: string;
tooltip?: string;
tooltipAlign?: Alignment;
};
declare const ToolbarItem: React.ElementType<ItemPropsWithTooltip>;
declare const props: ItemPropsWithTooltip;
const { tooltip, key, tooltipAlign, ...rest } = props;
const _ = <ToolbarItem {...rest} />; // TS2590
Hướng dẫn đóng góp
Bắt đầu từ đâu
- Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
- Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
- Fork repository và làm thay đổi trên một nhánh.
- Mở pull request có tham chiếu số hiệu của issue.
Đánh giá
Issue này chưa được đánh giá.