KdlTypeParser<T> typedef

KdlTypeParser<T> = T? Function(T, String type)

Function signature for converting KdlValue and KdlNode into custom types. Return null to skip parsing and keep the original value.

Implementation

typedef KdlTypeParser<T> = T? Function(T, String type);