@elcrm/telegram 0.0.71 → 0.0.73

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.
@@ -1,4 +1,4 @@
1
- import { default as React } from "react";
1
+ import { default as React } from 'react';
2
2
  declare let toggleBottomsheet: () => void;
3
3
  type TBottomsheet = {
4
4
  children: React.ReactNode;
@@ -13,10 +13,6 @@ type TBottomsheet = {
13
13
  * @param {string} [props.title] - Заголовок окна (опционально)
14
14
  * @param {boolean} [props.isOverlay=true] - Показывать ли затемняющую подложку (по умолчанию true)
15
15
  */
16
- declare const BottomSheet: ({
17
- children,
18
- title,
19
- isOverlay,
20
- }: TBottomsheet) => import("react/jsx-runtime").JSX.Element;
16
+ declare const BottomSheet: ({ children, title, isOverlay }: TBottomsheet) => import("react/jsx-runtime").JSX.Element;
21
17
  export default BottomSheet;
22
18
  export { toggleBottomsheet };