@angular-eslint/schematics
Version:
Angular Schematics for angular-eslint
13 lines • 514 B
TypeScript
import type { Rule } from '@angular-devkit/schematics';
/**
* We are able to use the full, unaltered Schema directly from @schematics/angular
* The applicable json file is copied from node_modules as a prebuiid step to ensure
* they stay in sync.
*/
import type { Schema as AngularSchema } from '@schematics/angular/library/schema';
interface Schema extends AngularSchema {
setParserOptionsProject?: boolean;
}
export default function (options: Schema): Rule;
export {};
//# sourceMappingURL=index.d.ts.map