UNPKG

outsystems-ui

Version:
19 lines (17 loc) 483 B
// eslint-disable-next-line @typescript-eslint/no-unused-vars namespace OSFramework.OSUI.Patterns.ButtonLoading { /** * Class that represents the custom configurations received by the ButtonLoading. * * @export * @class ButtonLoadingConfig * @extends {AbstractConfiguration} */ export class ButtonLoadingConfig extends AbstractConfiguration { public IsLoading: boolean; public ShowLoadingAndLabel: boolean; constructor(config: JSON) { super(config); } } }