UNPKG

@atlaskit/eslint-plugin-design-system

Version:

The essential plugin for use with the Atlassian Design System.

8 lines (7 loc) 299 B
import type { Rule } from 'eslint'; import type { RuleConfig } from './types'; type Suggestion = { shouldReturnSuggestion: boolean; } & Rule.SuggestionReportDescriptor; export declare const getTokenSuggestion: (node: Rule.Node, reference: string, config: RuleConfig) => Suggestion[]; export {};