Skip to content

Commit

Permalink
fixing ts test
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Aug 23, 2019
1 parent 6f7fdb5 commit 99731bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/typescript/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ const s1 = minify('select * from table; --comment');
const s2 = minify('select * from table; --comment', {});
const s3 = minify('select * from table; --comment', {compress: true});

const options: minify.minifyOptions = {compress: true};
const options: minify.IMinifyOptions = {compress: true};
const s4 = minify('select * from table; --comment', options);

0 comments on commit 99731bf

Please sign in to comment.