@mirantes-micro/foundation-design-system 1.1.92 → 1.1.93
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 +14 -12
- package/dist/index.js +2 -2
- package/package.json +1 -1
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
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
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?:
|
|
462
|
+
followers?: IFollowers;
|
|
461
463
|
followersCount?: number;
|
|
462
464
|
}
|
|
463
465
|
|