Remove unnecessary export-keywords

This commit is contained in:
Manuel Thalmann
2018-06-19 21:58:44 +02:00
parent ee0e07204c
commit dcbce940e0
+3 -3
View File
@@ -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.
*/