@wcstack/state 1.23.0 → 1.25.0
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.
- package/dist/index.d.ts +0 -2
- package/dist/index.esm.js +417 -159
- package/dist/index.esm.js.map +1 -1
- package/dist/index.esm.min.js +1 -1
- package/dist/index.esm.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ interface ILoopContextStack {
|
|
|
23
23
|
createLoopContext(elementStateAddress: IStateAddress, callback: (loopContext: ILoopContext) => void | Promise<void>): void | Promise<void>;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
declare const setLoopContextAsyncSymbol: unique symbol;
|
|
27
26
|
declare const setLoopContextSymbol: unique symbol;
|
|
28
27
|
declare const getByAddressSymbol: unique symbol;
|
|
29
28
|
declare const hasByAddressSymbol: unique symbol;
|
|
@@ -33,7 +32,6 @@ declare const disconnectedCallbackSymbol: unique symbol;
|
|
|
33
32
|
declare const updatedCallbackSymbol: unique symbol;
|
|
34
33
|
|
|
35
34
|
interface IStateProxy extends IState {
|
|
36
|
-
[setLoopContextAsyncSymbol](loopContext: ILoopContext | null, callback: () => Promise<any>): Promise<any>;
|
|
37
35
|
[setLoopContextSymbol](loopContext: ILoopContext | null, callback: () => any): any;
|
|
38
36
|
[getByAddressSymbol](address: IStateAddress): any;
|
|
39
37
|
[hasByAddressSymbol](address: IStateAddress): boolean;
|