UNPKG

outsystems-ui

Version:
13 lines (12 loc) 580 B
// 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); } }