UNPKG

@rxdi/schematics

Version:

37 lines (35 loc) 631 B
import { Path } from '@angular-devkit/core'; export interface GatewayOptions { /** * The name of the gateway. */ name: string; /** * The path to create the gateway. */ path?: string | Path; /** * Application language. */ language?: string; /** * The source root path */ sourceRoot?: string; /** * Specifies if a spec file is generated. */ spec?: boolean; /** * Flag to indicate if a directory is created. */ flat?: boolean; /** * Metadata name affected by declaration insertion. */ metadata?: string; /** * Nest element type name */ type?: string; }