import type { EEslintFeature } from "../enum/eslint-feature.enum"; import type { EFramework } from "../enum/framework.enum"; import type { IFrameworkConfigIgnorePath } from "./framework-config-ignore-path.interface"; export interface IFrameworkConfig { description?: string; displayName: string; features: Array; fileIndicators?: Array; ignorePath: IFrameworkConfigIgnorePath; isSupportWatch?: boolean; lintPaths: Array; name: EFramework; packageIndicators: { dependencies?: Array; devDependencies?: Array; either?: Array; }; } //# sourceMappingURL=framework-config.interface.d.ts.map