UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

6 lines (5 loc) 292 B
import type { Rule } from 'eslint'; import type { CallExpression as ESCallExpression, ObjectExpression } from 'estree'; type CallExpression = ESCallExpression & Rule.NodeParentExtension; export declare const getCssMapObject: (node: CallExpression) => ObjectExpression | undefined; export {};