packages/store/schematics/src/actions/schema.json

Summary

Maintainability
Test Coverage
{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsNgxsActions",
  "title": "Ngxs Actions Options Schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the actions.",
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the actions?"
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the actions."
    },
    "flat": {
      "type": "boolean",
      "default": false,
      "description": "Flag to indicate if a dir is created."
    }
  },
  "required": ["name"]
}