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