⚠️ Internal: This API is not publically exported by the package.

      Interface FinalPropertySignatureTransformation

      Represents a PropertySignature -> PropertySignature transformation

      The semantic of decode is:

      • none() represents the absence of the key/value pair
      • some(value) represents the presence of the key/value pair

      The semantic of encode is:

      • none() you don't want to output the key/value pair
      • some(value) you want to output the key/value pair

      Since

      1.0.0

      interface FinalPropertySignatureTransformation {
          _tag: "FinalPropertySignatureTransformation";
          decode: ((o) => Option<any>);
          encode: ((o) => Option<any>);
      }

      Properties

      Properties

      _tag: "FinalPropertySignatureTransformation"
      decode: ((o) => Option<any>)

      Type declaration

      encode: ((o) => Option<any>)

      Type declaration