UNPKG

igniteui-react-core

Version:
15 lines (14 loc) 388 B
import { IDictionary, Type } from "./type"; import { XmlNamespaceScope } from "./XmlNamespaceScope"; /** * @hidden */ export interface IXmlNamespaceResolver { getNamespacesInScope(a: XmlNamespaceScope): IDictionary; lookupNamespace(a: string): string; lookupPrefix(a: string): string; } /** * @hidden */ export declare let IXmlNamespaceResolver_$type: Type;