@gergelyszerovay/eslint-plugin-path-boundary-imports
Version:
The code is based on https://github.com/qdanik/eslint-plugin-path
10 lines • 297 B
TypeScript
import { Literal, Node as ESTreeNode } from "estree";
export type ConfigureSource = Literal;
export type Node = ESTreeNode & NodeParentExtension;
export interface NodeParentExtension {
parent: Node;
}
export interface ConfigSettings {
config?: string;
}
//# sourceMappingURL=types.d.ts.map