Skip to content

Commit

Permalink
Merge pull request #1 from Peach2Peach/feature/configure-linter
Browse files Browse the repository at this point in the history
Feature/configure linter
  • Loading branch information
StaxoLotl authored Dec 29, 2022
2 parents ff9903b + d34a198 commit 0b0a0de
Show file tree
Hide file tree
Showing 12 changed files with 16,144 additions and 7,481 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ module.exports = {
'simple-import-sort/imports': 'error',
'sort-imports': 'off',
},
}
};
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
}
};
2 changes: 1 addition & 1 deletion lib/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/lib/interfaces.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export declare type NetworkType = 'bitcoin' | 'testnet' | 'signet' | 'regtest';
export type NetworkType = 'bitcoin' | 'testnet' | 'signet' | 'regtest';
export interface GenerateMnemonicRequest {
entropy?: 128 | 160 | 192 | 224 | 256;
length?: 12 | 15 | 18 | 21 | 24;
Expand All @@ -12,9 +12,9 @@ export interface CreateExtendedKeyResponse {
mnemonic: string;
xprv: string;
}
export declare type WPKH = 'default' | null | '' | 'p2wpkh' | 'wpkh' | undefined;
export declare type P2PKH = 'p2pkh' | 'pkh';
export declare type SHP2WPKH = 'shp2wpkh' | 'p2shp2wpkh';
export type WPKH = 'default' | null | '' | 'p2wpkh' | 'wpkh' | undefined;
export type P2PKH = 'p2pkh' | 'pkh';
export type SHP2WPKH = 'shp2wpkh' | 'p2shp2wpkh';
export interface CreateDescriptorRequest {
type?: WPKH | P2PKH | SHP2WPKH | 'MULTI';
/**
Expand Down
Loading

0 comments on commit 0b0a0de

Please sign in to comment.