@markuplint/ml-spec
Version:
Types and schema that specs of the Markup languages for markuplint
10 lines (9 loc) • 331 B
TypeScript
import type { NamespaceURI, Namespace } from '@markuplint/ml-ast';
type NamespacedElementName = {
localNameWithNS: string;
localName: string;
namespace: Namespace;
namespaceURI: NamespaceURI;
};
export declare function resolveNamespace(name: string, namespaceURI?: string | null): NamespacedElementName;
export {};