* Registers transform callbacks for system message sections. * * @param callbacks - Map of section ID to transform callback, or undefined to clear * @internal This method is typically called internally when creating a session.
(callbacks?: Map<string, SectionTransformFn>)
| 1140 | * @internal This method is typically called internally when creating a session. |
| 1141 | */ |
| 1142 | registerTransformCallbacks(callbacks?: Map<string, SectionTransformFn>): void { |
| 1143 | this.transformCallbacks = callbacks; |
| 1144 | } |
| 1145 | |
| 1146 | /** |
| 1147 | * Handles a systemMessage.transform request from the runtime. |
no outgoing calls
no test coverage detected