sprof 0.0.114 → 0.0.115

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/index.d.ts CHANGED
@@ -1,6 +1,4 @@
1
1
  export * as PFM from './modules/index';
2
2
  export { default as PF } from './core/index';
3
3
  export declare const pfName: string[];
4
- export * from './core/auth/index';
5
- export * from './core/classes/index';
6
4
  export * from './core/components/index';
@@ -1,9 +1,8 @@
1
- import { default as FileInfo } from '../../../core/classes/FileInfo';
2
1
  export default class PassportScan {
3
2
  id?: string;
4
3
  passportId?: string;
5
4
  fileInfoId?: string;
6
- fileInfo: FileInfo;
5
+ fileInfo: import('../../../core/classes/FileInfo').default;
7
6
  order: number;
8
7
  constructor(i?: PassportScan);
9
8
  static Create(passportId?: string): PassportScan;