sprof 0.1.2 → 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.
@@ -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
  */
@@ -0,0 +1,2 @@
1
+ import { default as IOption } from './IOption';
2
+ export type Option = IOption;