@rxdi/schematics
Version:
25 lines (23 loc) • 419 B
TypeScript
import { Path } from '@angular-devkit/core';
export interface DecoratorOptions {
/**
* The name of the decorator.
*/
name: string;
/**
* The path to create the decorator.
*/
path?: string | Path;
/**
* Application language.
*/
language?: string;
/**
* The source root path
*/
sourceRoot?: string;
/**
* Flag to indicate if a directory is created.
*/
flat?: boolean;
}