eslint-plugin-gamut
Version:
Shared eslint plugin for Gamut applications
7 lines (6 loc) • 350 B
TypeScript
import { TSESTree } from '@typescript-eslint/utils';
export declare const isNamedVariableTheme: (arrowExpression: TSESTree.ArrowFunctionExpression) => boolean;
export declare const checkArrowFuncBodyTypesAndReturnThemeVars: (arrowFuncExpression: TSESTree.ArrowFunctionExpression) => false | {
themeValueKey: string;
themeCategory: string;
};