Fixed indentations

This commit is contained in:
Marco
2016-02-22 21:06:57 +01:00
parent 4f6567dfa7
commit 2671c57724
+8 -8
View File
@@ -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;