keyringOption

This commit is contained in:
Jaco Greeff
2020-11-10 19:17:08 +01:00
parent 8d41ea5eba
commit d47cdf8a7b
3 changed files with 7 additions and 7 deletions
@@ -2,7 +2,9 @@
// SPDX-License-Identifier: Apache-2.0
import { KeyringStruct } from '../types';
import keyringOption from '.';
import { KeyringOption } from '.';
const keyringOption = new KeyringOption();
describe('KeyringOption', (): void => {
it('should not allow initOptions to be called more than once', (): void => {
-4
View File
@@ -138,7 +138,3 @@ export class KeyringOption implements KeyringOptionInstance {
};
}
}
const keyringOption = new KeyringOption();
export default keyringOption;