@jnxplus/nx-gradle
Version:
[](https://badge.fury.io/js/@jnxplus%2Fnx-gradle)
17 lines (15 loc) • 396 B
TypeScript
import { FrameworkType, LanguageType } from '@jnxplus/common';
export interface NxGradleLibGeneratorSchema {
name: string;
tags?: string;
directory?: string;
simpleName?: boolean;
simplePackageName?: boolean;
language: LanguageType;
groupId: string;
projectVersion: string;
projects?: string;
skipStarterCode?: boolean;
framework?: FrameworkType;
skipFormat?: boolean;
}