Skip to content

Commit b24829b

Browse files
committed
Fix BaseMSA.getRowData return type to allow subclass override
1 parent 988625a commit b24829b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/msa-parsers/src/msa/BaseMSA.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default abstract class BaseMSA {
2020
}
2121

2222
getRowData(_name: string) {
23-
return undefined
23+
return undefined as { name?: string; accession?: string; dbxref?: string } | undefined
2424
}
2525

2626
getStructures(): Record<string, unknown> {

0 commit comments

Comments
 (0)