1 | {"version":3,"file":"schema.js","sourceRoot":"","sources":["../../../../../modules/schematics/src/component-store/schema.ts"],"names":[],"mappings":"","sourcesContent":["export interface Schema {\n /**\n * The name of the component store.\n */\n name: string;\n\n /**\n * The path to create the component store.\n */\n path?: string;\n\n /**\n * The name of the project.\n */\n project?: string;\n\n /**\n * Flag to indicate if a dir is created.\n */\n flat?: boolean;\n\n /**\n * When true, does not create test files.\n */\n skipTests?: boolean;\n\n /**\n * Allows specification of the declaring component.\n */\n component?: string;\n\n /**\n * Allows specification of the declaring module.\n */\n module?: string;\n}\n"]} |