Interface UseDataSourceSettings<Source, Target>

interface UseDataSourceSettings<Source = any, Target = Source> {
    transformer?: (source: Source) => Target;
}

Type Parameters

Properties

Properties

transformer?: (source: Source) => Target