Skip to content

Commit

Permalink
fix(index): export types Declaration and Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
remarkablemark committed Oct 15, 2023
1 parent cb1d29a commit 5500e24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ interface Position {
source?: string;
}

interface Declaration {
export interface Declaration {
type: 'declaration';
property: string;
value: string;
position: Position;
}

interface Comment {
export interface Comment {
type: 'comment';
comment: string;
position: Position;
Expand Down

0 comments on commit 5500e24

Please sign in to comment.