Skip to content

Commit 84c33f3

Browse files
authored
fix: Fix the failing build issue (#192)
* fix: fix styling/lint issue * fix: fix styling/lint issue
1 parent b9de0bb commit 84c33f3

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

.changeset/old-rabbits-attack.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@openzeppelin/relayer-sdk': minor
3+
---
4+
5+
fix: fix style issue

src/models/plugin-api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@ export interface PluginKVStore {
181181
export interface PluginContext {
182182
api: PluginAPI;
183183
kv: PluginKVStore;
184+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
184185
params: any;
185186
}
186187

src/models/solana-rpc-result.ts

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,21 @@
11
// This file is a workaround to generate the desired output.
22
// Workaround for https://github.com/OpenAPITools/openapi-generator/issues/13417
33

4-
// May contain unused imports in some cases
5-
// @ts-ignore
4+
// @ts-expect-error - May contain unused imports in some cases
65
import type { FeeEstimateResult } from './fee-estimate-result';
7-
// May contain unused imports in some cases
8-
// @ts-ignore
6+
// @ts-expect-error - May contain unused imports in some cases
97
import type { GetFeaturesEnabledResult } from './get-features-enabled-result';
10-
// May contain unused imports in some cases
11-
// @ts-ignore
8+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
129
import type { GetSupportedTokensItem } from './get-supported-tokens-item';
13-
// May contain unused imports in some cases
14-
// @ts-ignore
10+
// @ts-expect-error - May contain unused imports in some cases
1511
import type { GetSupportedTokensResult } from './get-supported-tokens-result';
16-
// May contain unused imports in some cases
17-
// @ts-ignore
12+
// @ts-expect-error - May contain unused imports in some cases
1813
import type { PrepareTransactionResult } from './prepare-transaction-result';
19-
// May contain unused imports in some cases
20-
// @ts-ignore
14+
// @ts-expect-error - May contain unused imports in some cases
2115
import type { SignAndSendTransactionResult } from './sign-and-send-transaction-result';
22-
// May contain unused imports in some cases
23-
// @ts-ignore
16+
// @ts-expect-error - May contain unused imports in some cases
2417
import type { SignTransactionResult } from './sign-transaction-result';
25-
// May contain unused imports in some cases
26-
// @ts-ignore
18+
// @ts-expect-error - May contain unused imports in some cases
2719
import type { TransferTransactionResult } from './transfer-transaction-result';
2820

2921
type TransferTransactionResultWithMethod = TransferTransactionResult & {

0 commit comments

Comments
 (0)