Type Alias PrefabWrapperLinkedOptionConfiguration

PrefabWrapperLinkedOptionConfiguration: {
    allowedInput?: {
        name: string;
        value: string | boolean | number;
    }[];
    as?: string;
    condition?: {
        comparator: "EQ" | "EQ_COMPONENT_ID";
        option: string;
        type: "SHOW" | "HIDE";
        value:
            | string
            | boolean
            | number
            | {
                ref: {
                    componentId: string;
                };
            };
    };
    dataType?: string;
    showOnDrop?: boolean;
}