From dcbce940e0e640ecf5ea1de501b74e87fec32549 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Tue, 19 Jun 2018 21:58:44 +0200 Subject: [PATCH] Remove unnecessary export-keywords --- types/mustache/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/types/mustache/index.d.ts b/types/mustache/index.d.ts index 105e737b18..61f9788da4 100644 --- a/types/mustache/index.d.ts +++ b/types/mustache/index.d.ts @@ -89,7 +89,7 @@ declare namespace Mustache { /** * A simple string scanner that is used by the template parser to find tokens in template strings. */ - export class Scanner { + class Scanner { string: string; tail: string; pos: number; @@ -130,7 +130,7 @@ declare namespace Mustache { /** * Represents a rendering context by wrapping a view object and maintaining a reference to the parent context. */ - export class Context { + class Context { view: any; parentContext: Context; @@ -166,7 +166,7 @@ declare namespace Mustache { * * It also maintains a cache of templates to avoid the need to parse the same template twice. */ - export class Writer { + class Writer { /** * Initializes a new instance of the `MustacheWriter` class. */