File

src/lib/full-text-search/table-full-text-search.service.ts

Index

Properties
Accessors

Properties

change
Default value : new BehaviorSubject<string>('')

Accessors

current
getcurrent()
import { Injectable } from '@angular/core';
import { FilterLike } from '@rxap/data-source/table';
import { BehaviorSubject } from 'rxjs';

@Injectable()
export class TableFullTextSearchService implements FilterLike {
  change = new BehaviorSubject<string>('');

  get current(): string {
    return this.change.value;
  }
}

results matching ""

    No results matching ""