sprof 0.0.37 → 0.0.38
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/services/PHelp.d.ts +675 -1
- package/dist/services/PHelp2.d.ts +675 -1
- package/dist/store/Store.d.ts +2 -2
- package/package.json +1 -1
package/dist/store/Store.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { M } from '../modules/forms/store/index';
|
|
2
|
-
export interface IStore extends CoreStore, M {
|
|
3
|
-
}
|
|
4
2
|
declare class CoreStore {
|
|
5
3
|
Auth: {
|
|
6
4
|
Login(data?: Map<string, string> | undefined): Promise<void>;
|
|
@@ -461,5 +459,7 @@ declare class CoreStore {
|
|
|
461
459
|
}
|
|
462
460
|
declare class Store {
|
|
463
461
|
}
|
|
462
|
+
interface Store extends CoreStore, M {
|
|
463
|
+
}
|
|
464
464
|
declare const _default: Store;
|
|
465
465
|
export default _default;
|
package/package.json
CHANGED