отслеживать ее изменения ?
единственное что приходит в голову import { Pipe, PipeTransform } from '@angular/core'; @Pipe({ name: 'letValue', standalone: true, }) export class LetValuePipe implements PipeTransform { private cached: string | null = null; transform(value: string): string { if (this.cached) return this.cached; this.cached = value; return this.cached; } }
эм... а зачем вам такой кейс?
А для чего тебе такая переменная?
Обсуждают сегодня