mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-06-18 23:31:07 +00:00
Updates
This commit is contained in:
Vendored
+14
@@ -0,0 +1,14 @@
|
||||
import type { IFavoriteChainProps, Network } from './types.js';
|
||||
import React from 'react';
|
||||
interface Props {
|
||||
affinity?: string;
|
||||
apiUrl: string;
|
||||
className?: string;
|
||||
setApiUrl: (network: string, apiUrl: string) => void;
|
||||
value: Network;
|
||||
isFavorite: boolean;
|
||||
toggleFavoriteChain: (chainInfo: IFavoriteChainProps) => void;
|
||||
}
|
||||
declare function NetworkDisplay({ apiUrl, className, isFavorite, setApiUrl, toggleFavoriteChain, value: { isChild, isRelay, isUnreachable, name, nameRelay: relay, paraId, providers, ui } }: Props): React.ReactElement<Props>;
|
||||
declare const _default: React.MemoExoticComponent<typeof NetworkDisplay>;
|
||||
export default _default;
|
||||
Reference in New Issue
Block a user