@bluxcc/react 0.1.10 → 0.1.12

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,3 +0,0 @@
1
- import { CornerRadius } from '../types';
2
- declare const getBorderRadius: (cornerRadius: CornerRadius | string) => string;
3
- export default getBorderRadius;
@@ -1,13 +0,0 @@
1
- import { Url } from './url';
2
- export interface FallbackOptions {
3
- retryCount?: number;
4
- retryDelay?: number;
5
- }
6
- export interface Fallback extends FallbackOptions {
7
- urls: Url[];
8
- }
9
- export declare const fallback: (urls: Url[], options?: FallbackOptions) => {
10
- retryCount?: number;
11
- retryDelay?: number;
12
- urls: Url[];
13
- };
@@ -1,2 +0,0 @@
1
- declare const getNetworkPassphrase: (network: string) => string;
2
- export default getNetworkPassphrase;
@@ -1,6 +0,0 @@
1
- import { Horizon } from '@stellar/stellar-sdk';
2
- import { HORIZON_SERVERS } from '../../constants';
3
- type HorizonServer = Horizon.Server;
4
- type NetworkKey = keyof typeof HORIZON_SERVERS;
5
- declare const getStellarServer: (network: NetworkKey) => HorizonServer;
6
- export default getStellarServer;
@@ -1,7 +0,0 @@
1
- import { Horizon } from '@stellar/stellar-sdk';
2
- export type History = {
3
- title: string;
4
- description: string;
5
- others?: any;
6
- };
7
- export declare const getTransactions: (server: Horizon.Server, publicKey: string) => Promise<History[]>;