* Image state interface containing source, alt text and title
| 16 | * Image state interface containing source, alt text and title |
| 17 | */ |
| 18 | interface IState { |
| 19 | /** Image source URL or file path */ |
| 20 | src: string; |
| 21 | /** Image alternative text */ |
| 22 | alt: string; |
| 23 | /** Image title */ |
| 24 | title: string; |
| 25 | } |
| 26 | |
| 27 | /** |
| 28 | * Image edit tool options |
nothing calls this directly
no outgoing calls
no test coverage detected