reactronic 0.23.108 → 0.23.110
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7,7 +7,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
|
-
import { reactive } from 'Rx.js';
|
|
10
|
+
import { reactive } from './Rx.js';
|
|
11
11
|
export class Reaction {
|
|
12
12
|
constructor(action) {
|
|
13
13
|
this.action = action;
|
|
@@ -5,12 +5,12 @@ export interface AbstractChangeset {
|
|
|
5
5
|
readonly timestamp: number;
|
|
6
6
|
readonly sealed: boolean;
|
|
7
7
|
}
|
|
8
|
-
export declare class MvccValue {
|
|
9
|
-
content:
|
|
8
|
+
export declare class MvccValue<T = any> {
|
|
9
|
+
content: T;
|
|
10
10
|
observers?: Set<Observer>;
|
|
11
11
|
get isOperation(): boolean;
|
|
12
12
|
get originSnapshotId(): number | undefined;
|
|
13
|
-
constructor(content:
|
|
13
|
+
constructor(content: T);
|
|
14
14
|
}
|
|
15
15
|
export type SeparationMode = boolean | 'isolated' | 'disposal';
|
|
16
16
|
export interface Observer {
|