Skip to content

Commit

Permalink
fix: export type instead of interface
Browse files Browse the repository at this point in the history
  • Loading branch information
cossssmin committed Feb 24, 2024
1 parent 9007d69 commit aef5117
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
@@ -1,4 +1,4 @@
export default interface PluginOptions {
export type PluginOptions = {
/**
Array of tag names to process. All other tags will be skipped.
Expand Down Expand Up @@ -26,4 +26,4 @@ export default interface PluginOptions {
```
*/
tags?: string[];
}
};

0 comments on commit aef5117

Please sign in to comment.