Added Hidden attributes to node

Summary: Type is any as it can be litterally anything, using json is a bit of pain as we have to do a lot of type checks to access anything

Reviewed By: lblasa

Differential Revision: D45079133

fbshipit-source-id: bcce93a1fce48d2779a648576f12df6392a0938e
This commit is contained in:
Luke De Feo
2023-04-27 07:28:41 -07:00
committed by Facebook GitHub Bot
parent 9d34d12111
commit 6b7c5297a5

View File

@@ -102,6 +102,7 @@ export type UINode = {
name: string;
attributes: Record<MetadataId, Inspectable>;
inlineAttributes: Record<string, string>;
hiddenAttributes?: any;
children: Id[];
bounds: Bounds;
tags: Tag[];