From 2671c5772403c07c5b9452f39a1658cfc5353c7e Mon Sep 17 00:00:00 2001 From: Marco Date: Mon, 22 Feb 2016 21:06:57 +0100 Subject: [PATCH] Fixed indentations --- sax/sax.d.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sax/sax.d.ts b/sax/sax.d.ts index 8d0d8784b..9249452c4 100644 --- a/sax/sax.d.ts +++ b/sax/sax.d.ts @@ -17,19 +17,19 @@ declare module "sax" { } export interface QualifiedName { - name: string; - prefix: string; - local: string; - uri: string; + name: string; + prefix: string; + local: string; + uri: string; } export interface Attribute extends QualifiedName { - value: string; + value: string; } interface BaseTag { - name: string; - isSelfClosing: boolean; + name: string; + isSelfClosing: boolean; } // Interface used when the xmlns option is set @@ -39,7 +39,7 @@ declare module "sax" { } export interface Tag extends BaseTag { - attributes: { [key: string]: string }; + attributes: { [key: string]: string }; } export function parser(strict: boolean, opt: SAXOptions): SAXParser;