mayak-common-library 0.2.11 → 0.2.13
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.cjs +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -818,11 +818,11 @@ interface RealtyTitleProps {
|
|
|
818
818
|
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
819
819
|
|
|
820
820
|
interface RealtyPriceProps {
|
|
821
|
-
realtyForRent?:
|
|
821
|
+
realtyForRent?: string;
|
|
822
822
|
price: string;
|
|
823
823
|
currencySwitcher?: ReactNode;
|
|
824
824
|
}
|
|
825
|
-
declare const RealtyPrice:
|
|
825
|
+
declare const RealtyPrice: ({ realtyForRent, price, currencySwitcher, }: RealtyPriceProps) => react_jsx_runtime.JSX.Element;
|
|
826
826
|
|
|
827
827
|
declare enum ESTagEnum {
|
|
828
828
|
Borough = "borough",
|
package/dist/index.d.ts
CHANGED
|
@@ -818,11 +818,11 @@ interface RealtyTitleProps {
|
|
|
818
818
|
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
819
819
|
|
|
820
820
|
interface RealtyPriceProps {
|
|
821
|
-
realtyForRent?:
|
|
821
|
+
realtyForRent?: string;
|
|
822
822
|
price: string;
|
|
823
823
|
currencySwitcher?: ReactNode;
|
|
824
824
|
}
|
|
825
|
-
declare const RealtyPrice:
|
|
825
|
+
declare const RealtyPrice: ({ realtyForRent, price, currencySwitcher, }: RealtyPriceProps) => react_jsx_runtime.JSX.Element;
|
|
826
826
|
|
|
827
827
|
declare enum ESTagEnum {
|
|
828
828
|
Borough = "borough",
|