mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 19:27:44 +00:00
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;
|