This repository was archived by the owner on Jul 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed
contract_wrappers/registries Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ module.exports = {
21
21
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
22
22
// e.g. "@typescript-eslint/explicit-function-return-type": "off",
23
23
'@typescript-eslint/explicit-function-return-type' : 'off' ,
24
+ '@typescript-eslint/no-namespace' : 'off' ,
25
+ '@typescript-eslint/no-empty-interface' : 'off' ,
24
26
'jest/expect-expect' : 'error' ,
25
27
'jest/no-empty-title' : 'warn' ,
26
28
'jest/no-truthy-falsy' : 'warn' ,
Original file line number Diff line number Diff line change @@ -53,6 +53,11 @@ interface GetFeatureRegistryLogsAsyncParams extends GetLogs {
53
53
> ;
54
54
}
55
55
56
+ export namespace FeatureRegistryTransactionParams {
57
+ export interface GetFeatureStatus extends GetFeatureStatusParams { }
58
+ export interface SetFeatureStatus extends SetFeatureStatusParams { }
59
+ }
60
+
56
61
/**
57
62
* @param nameKey is the key for the feature status mapping
58
63
*/
Original file line number Diff line number Diff line change 1
1
/* istanbul ignore file */
2
2
import * as conversionUtils from './utils/convert' ;
3
+ import { FeatureRegistryTransactionParams } from './contract_wrappers/registries/feature_registry_wrapper' ;
4
+
5
+ export namespace TransactionParams {
6
+ export import FeatureRegistry = FeatureRegistryTransactionParams ;
7
+ }
3
8
4
9
export { conversionUtils } ;
5
10
export { default as ContractWrapper } from './contract_wrappers/contract_wrapper' ;
You can’t perform that action at this time.
0 commit comments