File

src/app/services/help.service.ts

Index

Properties
Methods

Methods

save
save(helpquery: )
Parameters :
Name Optional
helpquery No
Returns : void

Properties

help
help:
Default value : new Subject()
help$
help$:
Default value : this.help.asObservable()
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs';

@Injectable({
  providedIn: 'root'
})
export class HelpService {
  help = new Subject();
  help$ = this.help.asObservable();

  save(helpquery) {
    this.help.next(helpquery);
  }
}

result-matching ""

    No results matching ""