16 lines
275 B
TypeScript
16 lines
275 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class ButtonStateService {
|
|
isButtonDisabled: boolean = false;
|
|
|
|
disableButton() {
|
|
this.isButtonDisabled = true;
|
|
}
|
|
|
|
enableButton() {
|
|
this.isButtonDisabled = false;
|
|
}
|
|
}
|