14 lines
326 B
TypeScript
14 lines
326 B
TypeScript
import * as plugins from './smartstate.plugins';
|
|
|
|
/**
|
|
* State observable observes a StatePart and notifies everyone interested
|
|
*/
|
|
export class StateObservable {
|
|
/**
|
|
* creates an observable from a StateCollection
|
|
*/
|
|
public static fromStatePartCollection(filterArg?: () => any) {}
|
|
|
|
constructor() {}
|
|
}
|