typedoc-plugin-typescript-declaration
Advanced tools
Comparing version 0.2.12 to 0.2.13
@@ -1404,2 +1404,8 @@ 'use strict'; | ||
} | ||
else if (!a.suffix && b.suffix) { | ||
return 1; | ||
} | ||
else if (a.suffix && !b.suffix) { | ||
return -1; | ||
} | ||
else if ((a.suffix || '') > (b.suffix || '')) { | ||
@@ -1406,0 +1412,0 @@ return 1; |
{ | ||
"name": "typedoc-plugin-typescript-declaration", | ||
"version": "0.2.12", | ||
"version": "0.2.13", | ||
"description": "Typedoc plugin to render to typescript declaration file", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
65755
1507