Files
Umbraco-CMS/src/Umbraco.Web.UI.Client/libs/observable-api/string-state.ts

12 lines
363 B
TypeScript
Raw Normal View History

2023-01-24 13:01:40 +01:00
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> {
}