UNPKG

@markuplint/ml-spec

Version:

Types and schema that specs of the Markup languages for markuplint

3 lines (2 loc) 277 B
import type { ElementSpec } from '../types/index.js'; export declare function getSpecByTagName<K extends keyof ElementSpec = keyof ElementSpec>(specs: readonly Pick<ElementSpec, 'name' | K>[], localName: string, namespace: string | null): Pick<ElementSpec, "name" | K> | null;