From 86653f70a8d298f1f1167e5530fa8aa8b91801ca Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Sat, 4 Nov 2017 20:41:03 -0700 Subject: [PATCH] Export interfaces in typings Fixes #1080 --- typings/xterm.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typings/xterm.d.ts b/typings/xterm.d.ts index f0ab9daf..18676b8d 100644 --- a/typings/xterm.d.ts +++ b/typings/xterm.d.ts @@ -11,7 +11,7 @@ declare module 'xterm' { /** * An object containing start up options for the terminal. */ - interface ITerminalOptions { + export interface ITerminalOptions { /** * A data uri of the sound to use for the bell (needs bellStyle = 'sound'). */ @@ -92,7 +92,7 @@ declare module 'xterm' { /** * Contains colors to theme the terminal with. */ - interface ITheme { + export interface ITheme { /** The default foreground color */ foreground?: string, /** The default background color */ @@ -140,7 +140,7 @@ declare module 'xterm' { /** * An object containing options for a link matcher. */ - interface ILinkMatcherOptions { + export interface ILinkMatcherOptions { /** * The index of the link from the regex.match(text) call. This defaults to 0 * (for regular expressions without capture groups).