Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Oct 21, 2024
1 parent 594671c commit 4704436
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/extract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,9 @@ function processDeclaration(declaration: string): string {
else if (declaration.startsWith('export interface')) {
return processInterfaceDeclaration(declaration)
}
else if (declaration.startsWith('interface')) {
return processInterfaceDeclaration(declaration)
}
else if (declaration.startsWith('export type')) {
return processTypeDeclaration(declaration)
}
Expand Down

0 comments on commit 4704436

Please sign in to comment.