(value: string)
| 106 | export interface OutputSerializer { |
| 107 | serialize(value: any): string; |
| 108 | deserialize<T>(value: string): T; |
| 109 | } |
| 110 | |
| 111 | export class JSONOutputSerializer implements OutputSerializer { |
no outgoing calls
no test coverage detected