packages/store/schematics/src/state/state.schema.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface StateSchema {
  /**
   * The name of the state.
   */
  name: string;
  /**
   * The path to create the state.
   */
  path?: string;
  /**
   * The spec flag
   */
  spec?: boolean;
  /**
   * Flag to indicate if a dir is created.
   */
  flat?: boolean;
  /**
   * The application project name to add the Ngxs module/provider.
   */
  project?: string;
}