mayak-common-library 0.1.15 → 0.1.16
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.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -737,8 +737,8 @@ interface WhyWeProps {
|
|
|
737
737
|
declare const WhyWe: FC<WhyWeProps>;
|
|
738
738
|
|
|
739
739
|
interface ObjectInfoBlockProps {
|
|
740
|
-
title
|
|
741
|
-
text
|
|
740
|
+
title?: string | null;
|
|
741
|
+
text?: string | null;
|
|
742
742
|
properties: {
|
|
743
743
|
title: string;
|
|
744
744
|
desc?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -737,8 +737,8 @@ interface WhyWeProps {
|
|
|
737
737
|
declare const WhyWe: FC<WhyWeProps>;
|
|
738
738
|
|
|
739
739
|
interface ObjectInfoBlockProps {
|
|
740
|
-
title
|
|
741
|
-
text
|
|
740
|
+
title?: string | null;
|
|
741
|
+
text?: string | null;
|
|
742
742
|
properties: {
|
|
743
743
|
title: string;
|
|
744
744
|
desc?: string | null;
|