@dodoex/widgets 3.0.1-solana.7 → 3.0.1-solana.9
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 -15
- package/dist/index.js +2 -15
- package/dist/types/index.d.ts +8 -10
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
import { SwapProps } from './components/Swap';
|
|
2
|
-
import { WidgetProps } from './components/Widget';
|
|
1
|
+
import type { SwapProps } from './components/Swap';
|
|
2
|
+
import type { WidgetProps } from './components/Widget';
|
|
3
3
|
export type SwapWidgetProps = WidgetProps & SwapProps;
|
|
4
|
+
export type { WidgetProps } from './components/Widget';
|
|
5
|
+
export type { TokenInfo } from './hooks/Token/type';
|
|
6
|
+
export type { Page } from './router';
|
|
4
7
|
export { Swap } from './components/Swap';
|
|
5
|
-
export {
|
|
8
|
+
export { UnstyleWidget } from './components/Widget';
|
|
9
|
+
export { MetadataFlag } from './hooks/Submission/types';
|
|
10
|
+
export { PageType, useRouterStore } from './router';
|
|
6
11
|
export { default as AMMV2Create } from './widgets/PoolWidget/AMMV2Create';
|
|
7
12
|
export { default as PoolList } from './widgets/PoolWidget/PoolList';
|
|
8
|
-
export { useRouterStore, PageType } from './router';
|
|
9
|
-
export type { Page } from './router';
|
|
10
|
-
export { MetadataFlag } from './hooks/Submission/types';
|
|
11
|
-
export type { WidgetProps } from './components/Widget';
|
|
12
|
-
export type { TokenInfo } from './hooks/Token/type';
|
|
13
|
-
export declare function SoonSwapWidget(props: SwapWidgetProps): JSX.Element;
|
|
14
|
-
export declare function PoolWidget(props: SwapWidgetProps): JSX.Element;
|