sprof 0.0.34 → 0.0.35
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/modules/forms/store/index.d.ts +220 -4
- package/dist/services/PHelp2.d.ts +2 -0
- package/dist/sprof.js +747 -747
- package/dist/sprof.umd.cjs +11 -11
- package/dist/store/Store.d.ts +7 -4
- package/package.json +1 -1
package/dist/store/Store.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { M } from '../modules/forms/store/index';
|
|
2
|
+
export interface IStore extends CoreStore, M {
|
|
3
|
+
}
|
|
4
|
+
declare class CoreStore {
|
|
2
5
|
Auth: {
|
|
3
6
|
Login(data?: Map<string, string> | undefined): Promise<void>;
|
|
4
7
|
LoginAs(email: string): Promise<void>;
|
|
@@ -455,7 +458,7 @@ export default abstract class CoreStore {
|
|
|
455
458
|
Items(): import('..').ValueType[];
|
|
456
459
|
Count(): globalThis.Ref<number, number>;
|
|
457
460
|
};
|
|
458
|
-
static Extend(stores: {
|
|
459
|
-
[key: string]: any;
|
|
460
|
-
}): void;
|
|
461
461
|
}
|
|
462
|
+
declare class Store {
|
|
463
|
+
}
|
|
464
|
+
export default Store;
|
package/package.json
CHANGED