12 lines
363 B
TypeScript
12 lines
363 B
TypeScript
|
|
import { BasicState } from "./basic-state";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @export
|
||
|
|
* @class StringState
|
||
|
|
* @extends {BehaviorSubject<T>}
|
||
|
|
* @description - A RxJS BehaviorSubject this Subject ensures the data is unique, not updating any Observes unless there is an actual change of the value.
|
||
|
|
*/
|
||
|
|
export class StringState<T extends string | undefined | null> extends BasicState<T> {
|
||
|
|
|
||
|
|
}
|