astro-ghostcms/.pnpm-store/v3/files/d0/cb7c150f525638fa6733ac42127...

26 lines
707 B
Plaintext

import type { RuleContext, RuleListener } from "../types";
export type PluginRuleModule = {
meta?: {
docs?: {
url?: string;
};
messages?: never;
schema?: never;
type?: never;
fixable?: never;
deprecated?: boolean;
};
create: (context: RuleContext) => RuleListener;
};
type PluginConfig = {
plugins?: string | string[];
parserOptions?: unknown;
rules?: Record<string, string | unknown[]>;
};
export type PluginJsxA11y = {
rules?: Record<string, PluginRuleModule | undefined>;
configs?: Record<string, PluginConfig | undefined>;
};
export declare function getPluginJsxA11y(): PluginJsxA11y | null;
export {};