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

Summary

Maintainability
A
0 mins
Test Coverage
export interface StoreSchema {
  /**
   * The name of the store.
   */
  name: string;
  /**
   * The path to create the store.
   */
  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;
}