RevTurbineUiPathActionTypes
RevTurbineUiPathActionTypes<
TUiPaths> =Extract<{ [Index in keyof TUiPaths]: TUiPaths[Index] extends { action_type: infer ActionType } ? ActionType : never }[number],string>
Extracts action_type string literals from a UI path array type.
Type Parameters
Section titled “Type Parameters”TUiPaths
Section titled “TUiPaths”TUiPaths extends readonly unknown[]