UNPKG

@nx-dotnet/nxdoc

Version:

> This package is unstable! Documentation formatting could change in the future. See something that you think should be different? [Open an issue](https://github.com/nx-dotnet/nx-dotnet/issues) on github and help shape this plugin.

13 lines (12 loc) 532 B
import { ProjectConfiguration, Tree } from '@nx/devkit'; import { Schema } from './schema'; export default function (host: Tree, options: Schema): Promise<void>; export declare function findProjectsWithGeneratorsOrExecutors(host: Tree): Promise<({ name: string; generators: boolean; executors: boolean; } & Omit<ProjectConfiguration, "generators">)[]>; export declare function projectContainsGeneratorsOrExecutors(host: Tree, project: ProjectConfiguration): false | { generators: boolean; executors: boolean; };