UNPKG

outsystems-ui

Version:
16 lines (15 loc) 414 B
// eslint-disable-next-line @typescript-eslint/no-unused-vars namespace OSFramework.OSUI.Patterns.AnimatedLabel { /** * Class that represents the custom configurations received by the AnimatedLabel. * * @export * @class AnimatedLabelConfig * @extends {AbstractConfiguration} */ export class AnimatedLabelConfig extends AbstractConfiguration { constructor(config: JSON) { super(config); } } }