Skip to content

Commit

Permalink
Merge pull request #20 from metadevpro/export-missing-types
Browse files Browse the repository at this point in the history
export missing types
  • Loading branch information
pjmolina authored May 29, 2018
2 parents 6332dfc + 13747d5 commit 86c177f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/passes/generate-ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -778,30 +778,30 @@ function generateTS(ast, options) {
" end: IFilePosition;",
"}",
"",
"interface ILiteralExpectation {",
"export interface ILiteralExpectation {",
" type: \"literal\";",
" text: string;",
" ignoreCase: boolean;",
"}",
"",
"interface IClassParts extends Array<string | IClassParts> {}",
"export interface IClassParts extends Array<string | IClassParts> {}",
"",
"interface IClassExpectation {",
"export interface IClassExpectation {",
" type: \"class\";",
" parts: IClassParts;",
" inverted: boolean;",
" ignoreCase: boolean;",
"}",
"",
"interface IAnyExpectation {",
"export interface IAnyExpectation {",
" type: \"any\";",
"}",
"",
"interface IEndExpectation {",
"export interface IEndExpectation {",
" type: \"end\";",
"}",
"",
"interface IOtherExpectation {",
"export interface IOtherExpectation {",
" type: \"other\";",
" description: string;",
"}",
Expand Down

0 comments on commit 86c177f

Please sign in to comment.