UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

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;