* @static action - Access to an specific action class * * @param {string} id - ID of the action you want to access to. * @return {Action} - Returns the action that matches the given ID
(id: string)
| 892 | * @return {Action} - Returns the action that matches the given ID |
| 893 | */ |
| 894 | static action (id: string): StaticAction | undefined { |
| 895 | return this._actions.find ((a) => a.id.toLowerCase () === id.toLowerCase ()); |
| 896 | } |
| 897 | |
| 898 | /** |
| 899 | * @static registerComponent - Register a Component to the components list. |
no outgoing calls
no test coverage detected