(value: TInput, options?: Record<string, any>)
| 9 | */ |
| 10 | export interface Serializer<TInput = any, TOutput = any> { |
| 11 | serialize(value: TInput, options?: Record<string, any>): TOutput; |
| 12 | } |
| 13 | |
| 14 | export type ProducerSerializer = Serializer< |
no outgoing calls
no test coverage detected