@mirantes-micro/foundation-design-system 1.1.91 → 1.1.92
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 -0
- package/dist/index.js +75 -62
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -424,6 +424,18 @@ 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
|
+
};
|
|
438
|
+
}
|
|
427
439
|
interface IPage {
|
|
428
440
|
id?: string;
|
|
429
441
|
name?: string;
|
|
@@ -445,6 +457,8 @@ interface IPage {
|
|
|
445
457
|
address?: string;
|
|
446
458
|
};
|
|
447
459
|
phoneNumber?: string;
|
|
460
|
+
followers?: IFollower[];
|
|
461
|
+
followersCount?: number;
|
|
448
462
|
}
|
|
449
463
|
|
|
450
464
|
declare const useApiGetPage: (slug?: string) => {
|