outsystems-ui
Version:
OutSystems UI Framework
13 lines (12 loc) • 580 B
text/typescript
// eslint-disable-next-line @typescript-eslint/no-unused-vars
namespace Providers.OSUI.Carousel.Splide.Utils {
/**
* Function that will normalize the ProviderConfigs in order to properly return boolean attributes
*
* @param splideConfigs All the configs that will be assigned to the provider in order to create it's instance
* @returns ProviderConfigs with all boolean as a boolean instead of string
*/
export function NormalizeSplideConfigs(splideConfigs: SplideOpts): SplideOpts {
return OutSystems.OSUI.Utils.AbstractNormalizeProviderConfigs(splideConfigs);
}
}