/*! * @copyright FLYACTS GmbH 2019 */ import { Rule } from '@angular-devkit/schematics'; export interface OptionSchema { name: string; } /** * Scaffold the entity */ export default function (options: OptionSchema): Rule;