Fix classify.ts lint

This commit is contained in:
junderw 2019-03-07 11:54:37 +09:00
commit cb5ab7684e
No known key found for this signature in database
GPG key ID: B256185D3A971908
3 changed files with 14 additions and 17 deletions

2
types/classify.d.ts vendored
View file

@ -12,5 +12,5 @@ declare const types: {
};
declare function classifyOutput(script: Buffer): string;
declare function classifyInput(script: Buffer, allowIncomplete: boolean): string;
declare function classifyWitness(script: Array<Buffer>, allowIncomplete: boolean): string;
declare function classifyWitness(script: Buffer[], allowIncomplete: boolean): string;
export { classifyInput as input, classifyOutput as output, classifyWitness as witness, types, };