@webdeveric/utils
    Preparing search index...

    Type Alias ConvertRecord<Input, Output>

    ConvertRecord: {
        [Property in keyof Output]: Output[Property] extends Builtin
            ? ConvertFn<Input, Output[Property]>
            : AnyConverter<Input, Output[Property]>
    }

    Type Parameters

    • Input
    • Output