-
Notifications
You must be signed in to change notification settings - Fork 542
Closed
Labels
priority: highNeeds immediate attention; blockers or critical or bugNeeds immediate attention; blockers or critical or bugtype: bugbug in the librarybug in the library
Description
Some of the changes in the following commit define types don't match the actual structure of the data causing type errors when attempting to access values as documented.
For example, lineTypeIntelligence: Record<string, object>
suggests that the shape would be:
lineTypeIntelligence: {
key: { ... }
}
It should probably instead be Record<string, any>
.
Or, even better, it should contain the actual available keys and value types as documented.
49f3f2b#diff-55a60b51b684465835a0448f6efceb0ef9b0cb5ada598728e1594ebf2507deddR292
LukeNotable
Metadata
Metadata
Assignees
Labels
priority: highNeeds immediate attention; blockers or critical or bugNeeds immediate attention; blockers or critical or bugtype: bugbug in the librarybug in the library