@markuplint/ml-spec
Version:
Types and schema that specs of the Markup languages for markuplint
5 lines (4 loc) • 362 B
TypeScript
import type { ARIA } from '../types/aria.js';
import type { ARIAVersion, Matches, MLMLSpec } from '../types/index.js';
import type { ReadonlyDeep } from 'type-fest';
export declare function getARIA(specs: MLMLSpec, localName: string, namespace: string | null, version: ARIAVersion, matches: Matches): Omit<ReadonlyDeep<ARIA>, ARIAVersion | 'conditions'> | null;