UNPKG

@eslint/css-tree

Version:

A tool set for CSS: fast detailed parser (CSS → AST), walker (AST traversal), generator (AST → CSS) and lexer (validation and matching) based on specs and browser implementations

12 lines (8 loc) 336 B
/** * @fileoverview Type definitions for @eslint/css-tree/definition-syntax-data * @author Nicholas C. Zakas */ import type { SyntaxConfig } from "./index.js"; export type DefaultSyntaxConfig = Pick<SyntaxConfig, "atrules" | "types" | "properties">; declare const defaultConfig: DefaultSyntaxConfig; export default defaultConfig;