From 3ed31be5b09312df88c66e9274672303a8609acc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dra=C5=BEen=20Ten=C5=BEera?= Date: Sun, 30 May 2021 13:52:13 +0200 Subject: [PATCH] fix(types): directly export Named type to avoid ambiguity with TS --isolatedModules option --- types/_helpers.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/types/_helpers.ts b/types/_helpers.ts index fa9b77da0..d5b9ad290 100644 --- a/types/_helpers.ts +++ b/types/_helpers.ts @@ -11,6 +11,4 @@ * and limitations under the License. */ -type Named = T & { name: string; }; - -export { Named } \ No newline at end of file +export type Named = T & { name: string; };