@bimeister/pupakit.kit
Version:
PupaKit is an open source collection of Angular components based on an atomic approach to building interfaces, which guarantees better performance and greater development flexibility.
9 lines (8 loc) • 338 B
TypeScript
import { BehaviorSubject } from 'rxjs';
import { TagKind } from '../types/tag-kind.type';
export interface TagStateServiceDeclaration {
readonly isDisabled$: BehaviorSubject<boolean>;
readonly tabIndex$: BehaviorSubject<number>;
readonly isClickable$: BehaviorSubject<boolean>;
readonly kind$: BehaviorSubject<TagKind>;
}