| 25 | export type ActionCallback = (data: ActionCallbackData) => void; |
| 26 | |
| 27 | export interface ParserCallbacks { |
| 28 | onArtifactOpen?: ArtifactCallback; |
| 29 | onArtifactClose?: ArtifactCallback; |
| 30 | onActionOpen?: ActionCallback; |
| 31 | onActionClose?: ActionCallback; |
| 32 | } |
| 33 | |
| 34 | interface ElementFactoryProps { |
| 35 | messageId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected