UNPKG

@nstudio/schematics

Version:

Cross-platform (xplat) tools for Nx workspaces.

28 lines (27 loc) 436 B
export interface Schema { name: string; /** * Target feature */ feature?: string; /** * Target apps */ projects?: string; /** * Target platforms */ platforms?: string; /** * Allows specification of the declaring module. */ module?: string; /** * Specifies whether this is the root state or feature state */ root?: boolean; /** * Skip formatting */ skipFormat?: boolean; }