File

src/busy-button/busy.service.ts

Methods

start
start()
Returns: void
stop
stop()
Returns: void

Properties

global
global: boolean
Default value: false
import { Injectable } from '@angular/core';

@Injectable()
export class BusyService {
    global: boolean = false

    start(): void {
        this.global = true
    }
    stop(): void {
        this.global = false
    }
}

results matching ""

    No results matching ""