ixfx
    Preparing search index...

    Type Alias DomBindSourceValue<TSource, TDestination>

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

    Type Parameters

    • TSource
    • TDestination

    Type declaration

    • OptionalsourceField?: keyof TSource

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

    • Optionaltransform?: (input: TSource) => TDestination
    • OptionaltransformValue?: (input: any) => TDestination
    • Optionaltwoway?: boolean