From 313ffe1d5076080548c5e583624b02bb39a9eb96 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Fri, 11 Feb 2022 17:55:07 -0800 Subject: [PATCH] Re-export StackFrame type for backwards compatibility Signed-off-by: Anders Kaseorg --- error-stack-parser.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/error-stack-parser.d.ts b/error-stack-parser.d.ts index c0ab289..d6a00e0 100644 --- a/error-stack-parser.d.ts +++ b/error-stack-parser.d.ts @@ -6,6 +6,7 @@ import StackFrame = require("stackframe"); declare module ErrorStackParser { + export type {StackFrame}; /** * Given an Error object, extract the most information from it. *