@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.
13 lines (12 loc) • 667 B
TypeScript
import { BehaviorSubject } from 'rxjs';
import { TagStateServiceDeclaration } from '../../../declarations/interfaces/tag-state-service.interface';
import { TagKind } from '../../../declarations/types/tag-kind.type';
import * as i0 from "@angular/core";
export declare class TagStateService implements TagStateServiceDeclaration {
readonly isDisabled$: BehaviorSubject<boolean>;
readonly tabIndex$: BehaviorSubject<number>;
readonly isClickable$: BehaviorSubject<boolean>;
readonly kind$: BehaviorSubject<TagKind>;
static ɵfac: i0.ɵɵFactoryDeclaration<TagStateService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<TagStateService>;
}