12 lines
336 B
TypeScript
12 lines
336 B
TypeScript
/**
|
|
* @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;
|