Skip to content

Commit

Permalink
Merge pull request #8 from wkillerud/fix/undefined-type
Browse files Browse the repository at this point in the history
  • Loading branch information
wkillerud authored Dec 22, 2022
2 parents 057fd2c + 466448e commit e107788
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scss-sassdoc-parser",
"version": "1.0.3",
"version": "1.0.4",
"engines": {
"node": ">=14"
},
Expand Down
6 changes: 3 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@ export type Link = {
};

export type Parameter = {
type: string;
name: string;
type?: string;
default?: string;
description?: string;
};

export type Property = {
type: string;
path: string;
type?: string;
name?: string;
default?: string;
description?: string;
Expand Down Expand Up @@ -69,7 +69,7 @@ export type Return = {

export type See = {
name: string;
type: string;
type?: string;
description?: string;
context?: Context;
};
Expand Down

0 comments on commit e107788

Please sign in to comment.