| 196 | * Interface for serializing operation and schema results |
| 197 | */ |
| 198 | export interface IResultSerializer { |
| 199 | /** |
| 200 | * Serialize an operation result to string |
| 201 | */ |
| 202 | serializeOperation(result: LoadOperationResult): string; |
| 203 | |
| 204 | /** |
| 205 | * Serialize a schema result to string |
| 206 | */ |
| 207 | serializeSchema(result: LoadSchemaResult): string; |
| 208 | } |
nothing calls this directly
no outgoing calls
no test coverage detected