-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0a51d5e
commit efe901e
Showing
1 changed file
with
0 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1 @@ | ||
/// <reference types="@docusaurus/theme-classic" /> | ||
|
||
declare module '@theme/CodeSnippetBlock' { | ||
import type { Props as BaseProps } from '@theme/CodeBlock'; | ||
|
||
export interface Props extends Omit<BaseProps, 'children'> { | ||
language: string; | ||
code: string; | ||
startString?: string; | ||
endString?: string; | ||
} | ||
|
||
export default function CodeSnippetBlock(props: Props): JSX.Element; | ||
} | ||
|
||
declare module '@theme/AddToMetaMaskButton' { | ||
export default function AddToMetaMaskButton(): JSX.Element; | ||
} | ||
|
||
declare module '@theme/DocBanner' { | ||
export default function DocBanner(): JSX.Element; | ||
} | ||
|
||
declare module '@theme/NetworkInfo' { | ||
export default { | ||
IOTA: JSX.Element, | ||
Shimmer: JSX.Element, | ||
ShimmerEVM: JSX.Element, | ||
ShimmerEVMAdditional: JSX.Element, | ||
Testnet: JSX.Element, | ||
TestnetEVM: JSX.Element, | ||
TestnetEVMAdditional: JSX.Element, | ||
}; | ||
} |