interface RegisterFilterService {
    currentFilterLabel: string;
    filterLabels: string[];
    currentFilterRegisters(): string[];
    setFilter(filterLabel): void;
    shouldDisplayRegister(registerName): boolean;
}

Implemented by

Properties

currentFilterLabel: string
filterLabels: string[]

Methods