@atlaskit/eslint-plugin-design-system
Version:
The essential plugin for use with the Atlassian Design System.
7 lines (6 loc) • 430 B
TypeScript
import type { Rule } from 'eslint';
import { type CallExpression, type Expression } from 'eslint-codemod-utils';
export declare const isCssInJsCallNode: (node?: Expression | null) => node is CallExpression;
export declare const isCssInJsObjectNode: (node?: Expression | null) => node is CallExpression;
export declare const isDecendantOfStyleBlock: (node: Rule.Node) => boolean;
export { isPropertyKey } from './is-property-key';