TimelineDataDescription to accept any properties

Summary: DataInspector can use `any` value to inspect. Lift the constraint from TimelineDataDescription as ultimately is not necessary i.e. the right inspector will be used based on the type of properties.

Reviewed By: antonk52

Differential Revision: D44572963

fbshipit-source-id: ad8a257020c90e18468e905f2beda44c2ee06368
This commit is contained in:
Lorenzo Blasa
2023-03-31 04:15:29 -07:00
committed by Facebook GitHub Bot
parent 2e8427f26b
commit 695c669e0c

View File

@@ -19,7 +19,7 @@ type TimePoint = {
display: string;
color: string;
key: string;
properties?: {[key: string]: string};
properties?: any;
};
type Timeline = {