| 962 | * BaseAction |
| 963 | */ |
| 964 | export interface BaseAction { |
| 965 | /** |
| 966 | * Sub-action to execute after the action has been executed. |
| 967 | */ |
| 968 | subAction?: { |
| 969 | [key: string]: any; |
| 970 | }; |
| 971 | } |
| 972 | /** |
| 973 | * BaseAnnotation |
| 974 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected