From 8a36577a4248f5347f42a69d78b0c55cf7eb6c4c Mon Sep 17 00:00:00 2001 From: William Candillon Date: Sat, 26 Nov 2016 10:53:04 +0100 Subject: [PATCH] Update renderTypeScript.js --- lib/renderTypeScript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/renderTypeScript.js b/lib/renderTypeScript.js index 4c7907e..0312cf2 100644 --- a/lib/renderTypeScript.js +++ b/lib/renderTypeScript.js @@ -109,7 +109,7 @@ function interfaceExtension(type) { // type - TopLevelType function interfaceOpen(type) { let str = ''; - str += 'interface '; + str += 'export interface '; str += tse(type); str += interfaceExtension(type); str += ' {';