interface IConversion<I, O> {
    targetType: string;
    transformationFunction(value: I): O;
}

Type Parameters

  • I
  • O

Properties

targetType: string

Methods