Skip to content

Commit

Permalink
fix: add specifer to NamedExport type (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Jan 17, 2022
1 parent c615083 commit 1ca4d30
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/analyze.ts
Expand Up @@ -32,6 +32,7 @@ export interface ESMExport {
end: number
name?: string
names: string[]
specifier?: string
}

export interface DeclarationExport extends ESMExport {
Expand All @@ -44,6 +45,7 @@ export interface NamedExport extends ESMExport {
type: 'named'
exports: string
names: string[]
specifier?: string
}

export interface DefaultExport extends ESMExport {
Expand Down

0 comments on commit 1ca4d30

Please sign in to comment.