astro-ghostcms/.pnpm-store/v3/files/2e/40479c0b0096cfa162f556ef9c2...

8 lines
298 B
Plaintext

import type { AST } from "astro-eslint-parser";
import type { RuleContext } from "../../types";
export type StyleContentCSS = {
css: string;
remap: (index: number) => number;
};
export declare function getStyleContentCSS(node: AST.JSXElement, context: RuleContext): StyleContentCSS | null;