@ape.swap/bonds-sdk 1.0.9 → 1.0.10
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
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
import { ButtonProps as ButtonProps$1, TextProps as TextProps$1 } from 'theme-ui';
|
|
3
|
-
import * as theme_ui_jsx_runtime from 'theme-ui/jsx-runtime';
|
|
4
3
|
|
|
5
4
|
declare enum sizes$1 {
|
|
6
5
|
SMALL = "sm",
|
|
@@ -83,6 +82,11 @@ declare const Dropdown: React.FC<DropdownProps>;
|
|
|
83
82
|
|
|
84
83
|
declare const DropdownItem: React.FC<DropdownItemProps>;
|
|
85
84
|
|
|
86
|
-
|
|
85
|
+
/** @jsxImportSource theme-ui */
|
|
86
|
+
|
|
87
|
+
interface BondsProps {
|
|
88
|
+
connectionString?: string;
|
|
89
|
+
}
|
|
90
|
+
declare const Bonds: React.FC<BondsProps>;
|
|
87
91
|
|
|
88
92
|
export { Bonds, Button, Dropdown, DropdownItem, Flex, Text };
|