Interface Mapper<A, B>

interface Mapper<A, B> {
    convert(input: A): B;
}

Type Parameters

  • A
  • B

Implemented by

Methods

Methods