outsystems-ui
Version:
OutSystems UI Framework
16 lines (15 loc) • 414 B
text/typescript
// 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);
}
}
}