ixfx
    Preparing search index...

    Type Alias DomBindSourceValue<TSource, TDestination>

    type DomBindSourceValue<TSource, TDestination> = {
        sourceField?: keyof TSource;
        transform?: (input: TSource) => TDestination;
        transformValue?: (input: any) => TDestination;
        twoway?: boolean;
    }

    Type Parameters

    • TSource
    • TDestination
    Index

    Properties

    sourceField?: keyof TSource

    Field from source value to pluck and use. This will also be the value passed to the transform

    transform?: (input: TSource) => TDestination
    transformValue?: (input: any) => TDestination
    twoway?: boolean