@mirantes-micro/foundation-design-system 1.1.92 → 1.1.94

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +14 -12
  2. package/dist/index.js +2 -2
  3. package/package.json +133 -133
package/dist/index.d.ts CHANGED
@@ -424,17 +424,19 @@ declare const clearSettingsCookie: (cookieName: string, options: {
424
424
  }) => void;
425
425
  declare const useLoadSettings: () => Settings | null;
426
426
 
427
- interface IFollower {
428
- page?: {
429
- id?: string;
430
- name?: string;
431
- logo?: string;
432
- };
433
- user?: {
434
- id?: string;
435
- name?: string;
436
- avatar?: string;
437
- };
427
+ interface IFollowerUser {
428
+ id?: string;
429
+ name?: string;
430
+ avatar?: string;
431
+ }
432
+ interface IFollowerPage {
433
+ id?: string;
434
+ name?: string;
435
+ logo?: string;
436
+ }
437
+ interface IFollowers {
438
+ page?: IFollowerPage[];
439
+ user?: IFollowerUser[];
438
440
  }
439
441
  interface IPage {
440
442
  id?: string;
@@ -457,7 +459,7 @@ interface IPage {
457
459
  address?: string;
458
460
  };
459
461
  phoneNumber?: string;
460
- followers?: IFollower[];
462
+ followers?: IFollowers;
461
463
  followersCount?: number;
462
464
  }
463
465