UNPKG

eslint-plugin-perfectionist

Version:

ESLint plugin for sorting various data such as objects, imports, types, enums, JSX props, etc.

8 lines (7 loc) 181 B
import { TSESTree } from '@typescript-eslint/types' /** * Helper type for a node with a specific AST node type. */ export type NodeOfType<Type> = { type: Type } & TSESTree.Node