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

Summary

Maintainability
A
0 mins
Test Coverage
export interface ActionsSchema {
  /**
   * The name of the actions.
   */
  name: string;
  /**
   * The path to create the actions.
   */
  path?: string;
  /**
   * Flag to indicate if a dir is created.
   */
  flat?: boolean;
}