sprof 0.0.140 → 0.0.141

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.
@@ -0,0 +1,8 @@
1
+ import { default as FilterModel } from './FilterModel';
2
+ import { default as FTSP } from './FTSP';
3
+ import { default as SortModel } from './SortModel';
4
+ export default abstract class F {
5
+ static SortModel: typeof SortModel;
6
+ static FilterModel: typeof FilterModel;
7
+ static FTSP: typeof FTSP;
8
+ }
@@ -1,5 +1,5 @@
1
1
  import { default as C } from './classes/index';
2
- import { default as FTSP } from './ftsp/FTSP';
2
+ import { default as F } from './ftsp/index';
3
3
  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';
@@ -273,9 +273,24 @@ export default abstract class PF {
273
273
  pagesCount: () => number;
274
274
  reset: () => void;
275
275
  };
276
- static FTSP: typeof FTSP;
276
+ /**
277
+ * Stores
278
+ */
277
279
  static S: typeof S;
280
+ /**
281
+ * Helpers
282
+ */
278
283
  static H: typeof H;
284
+ /**
285
+ * Classes
286
+ */
279
287
  static C: typeof C;
288
+ /**
289
+ * Types
290
+ */
280
291
  static T: typeof T;
292
+ /**
293
+ * FTSP
294
+ */
295
+ static F: typeof F;
281
296
  }