Interface ValueCodecs

interface ValueCodecs {
    fromValue(val, pushable, invocation): any;
    toValue(val, context?, invocation?): Value;
}

Methods