Skip to content

Commit

Permalink
Fix missing import in src/xml/transform
Browse files Browse the repository at this point in the history
  • Loading branch information
rkaw92 committed Dec 12, 2019
1 parent eee76f3 commit ea05962
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xml/transform.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { XE, XmlError } from "xml-core";
import { XmlAttribute, XmlChildElement, XmlElement } from "xml-core";
import { XmlAttribute, XmlChildElement, XmlElement, IXmlSerializable } from "xml-core";

import { XmlSignature } from "./xml_names";
import { XmlSignatureObject } from "./xml_object";
Expand All @@ -25,7 +25,7 @@ import { XmlSignatureObject } from "./xml_object";
*
*/

export interface ITransform extends XmlCore.IXmlSerializable {
export interface ITransform extends IXmlSerializable {
Algorithm: string;
LoadInnerXml(node: Node): void;
GetInnerXml(): Node | null;
Expand Down

0 comments on commit ea05962

Please sign in to comment.