⚠️ Internal: This API is not publically exported by the
package.
Interface FinalPropertySignatureTransformation
interface FinalPropertySignatureTransformation { _tag: "FinalPropertySignatureTransformation"; decode: ((o) => Option<any>); encode: ((o) => Option<any>); } Properties
Readonly
_tag
_tag: "FinalPropertySignatureTransformation"
Represents a
PropertySignature -> PropertySignature
transformationThe semantic of
decode
is:none()
represents the absence of the key/value pairsome(value)
represents the presence of the key/value pairThe semantic of
encode
is:none()
you don't want to output the key/value pairsome(value)
you want to output the key/value pairSince
1.0.0