fix(docs): Correct documentation format layout

This commit is contained in:
Samuel Andert 2023-07-24 11:13:52 +02:00
parent 5ee59cb820
commit 8aff269743

View File

@ -47,6 +47,7 @@ The file has several important imports:
export interface ProviderData { export interface ProviderData {
walletConnectId: string; walletConnectId: string;
} }
```
### ProviderData Interface ### ProviderData Interface
This interface represents the data structure required for the provider configuration, which currently only includes the `walletConnectId`. This interface represents the data structure required for the provider configuration, which currently only includes the `walletConnectId`.
@ -83,3 +84,4 @@ const data: ProviderData = {
}; };
initProvider(data); initProvider(data);
```