sprof 0.0.45 → 0.0.47

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.
@@ -22,7 +22,6 @@ export default class Contact {
22
22
  addWebsite(): void;
23
23
  pushFirst(): void;
24
24
  getCoords(): number[];
25
- static CreateBufetContacts(): Contact;
26
25
  updateDescription(e: string): void;
27
26
  updateTime(e: string): void;
28
27
  updateLatitude(e: string): void;
@@ -1,5 +1,3 @@
1
- import { default as Contact } from './Contact';
2
- import { default as FileInfo } from './FileInfo';
3
1
  export default class Human {
4
2
  id?: string;
5
3
  name: string;
@@ -10,20 +8,14 @@ export default class Human {
10
8
  carNumber: string;
11
9
  carModel: string;
12
10
  snils: string;
13
- photoId?: string;
14
- photo: FileInfo;
15
- photoMiniId?: string;
16
- photoMini: FileInfo;
17
11
  isMale: boolean;
18
12
  dateBirth: Date;
19
- contact: Contact;
20
13
  contactId?: string;
21
14
  slug: string;
22
15
  postIndex: string;
23
16
  address: string;
24
17
  editNameMode: boolean;
25
18
  constructor(i?: Human);
26
- getImageUrl(): string | URL | undefined;
27
19
  setEditNameMode(value: boolean): void;
28
20
  getFullName(): string;
29
21
  getInitialsName(): string;
@@ -31,9 +23,5 @@ export default class Human {
31
23
  capitalizeName(): void;
32
24
  trimName(): void;
33
25
  sanitizeName(): void;
34
- getFileInfos(): FileInfo[];
35
- removePhoto(): void;
36
- removePhotoMini(): void;
37
26
  setFullName(human: Human): void;
38
- initContact(): void;
39
27
  }