sprof 0.1.3 → 0.1.4
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/core/index.d.ts +5 -0
- package/dist/core/interfaces/index.d.ts +2 -0
- package/dist/sprof.js +590 -584
- package/dist/sprof.umd.cjs +11 -11
- package/package.json +1 -1
package/dist/core/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import { default as H } from './helpers/index';
|
|
|
4
4
|
import { default as S } from './store/index';
|
|
5
5
|
import { default as T } from './types/index';
|
|
6
6
|
import { default as UI } from './ui/index';
|
|
7
|
+
import * as I from '@/core/interfaces/index';
|
|
7
8
|
export default abstract class PF {
|
|
8
9
|
static Auth: {
|
|
9
10
|
readonly Form: {
|
|
@@ -299,6 +300,10 @@ export default abstract class PF {
|
|
|
299
300
|
* Types
|
|
300
301
|
*/
|
|
301
302
|
static T: typeof T;
|
|
303
|
+
/**
|
|
304
|
+
* Interfaces
|
|
305
|
+
*/
|
|
306
|
+
static I: typeof I;
|
|
302
307
|
/**
|
|
303
308
|
* FTSP
|
|
304
309
|
*/
|