@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
13 lines (12 loc) • 426 B
TypeScript
import type { Rule } from 'eslint';
import type { ObjectExpression } from 'estree';
export declare class CssMapObjectChecker {
private readonly allowedFunctionCalls;
private readonly cssMapObject;
private readonly report;
private readonly context;
constructor(cssMapObject: ObjectExpression, context: Rule.RuleContext);
private checkCssMapObjectValue;
private checkCssMapObject;
run(): void;
}