sprof 0.0.21 → 0.0.22

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,7 @@
1
+ import { default as FileInfo } from '../../../classes/FileInfo';
2
+ export default class Inn {
3
+ id?: string;
4
+ num: string;
5
+ fileInfoId?: string;
6
+ fileInfo: FileInfo;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { default as FileInfo } from '../../../classes/FileInfo';
2
+ export default class Snils {
3
+ id?: string;
4
+ num: string;
5
+ fileInfoId?: string;
6
+ fileInfo: FileInfo;
7
+ }
@@ -0,0 +1,5 @@
1
+ import { default as Inn } from './Inn';
2
+ import { default as Passport } from './Passport';
3
+ import { default as PassportScan } from './PassportScan';
4
+ import { default as Snils } from './Snils';
5
+ export { Inn, Passport, PassportScan, Snils };
@@ -0,0 +1,7 @@
1
+ import { default as Inn } from '../classes/Inn';
2
+ import { default as BaseStore } from '../../../services/BaseStore';
3
+ declare class S extends BaseStore<Inn> {
4
+ constructor();
5
+ }
6
+ declare const store: S;
7
+ export default store;
@@ -0,0 +1,7 @@
1
+ import { default as Snils } from '../classes/Snils';
2
+ import { default as BaseStore } from '../../../services/BaseStore';
3
+ declare class S extends BaseStore<Snils> {
4
+ constructor();
5
+ }
6
+ declare const store: S;
7
+ export default store;
@@ -0,0 +1,5 @@
1
+ import { default as InnsStore } from './InnsStore';
2
+ import { default as PassportScansStore } from './PassportScansStore';
3
+ import { default as PassportsStore } from './PassportsStore';
4
+ import { default as SnilssStore } from './SnilssStore';
5
+ export { InnsStore, PassportScansStore, PassportsStore, SnilssStore };
@@ -1,4 +1,4 @@
1
+ export * from './documents/classes/index';
2
+ export * from './documents/store/index';
1
3
  export * from './extracts/store/index';
2
4
  export * from './forms/store/index';
3
- export * from './passports/classes/index';
4
- export * from './passports/store/index';