Skip to content

Instantly share code, notes, and snippets.

@bniedermeyer
Created February 26, 2019 06:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bniedermeyer/ab0e8f33c84fe31e907c58b2d76ac868 to your computer and use it in GitHub Desktop.
Save bniedermeyer/ab0e8f33c84fe31e907c58b2d76ac868 to your computer and use it in GitHub Desktop.
import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics';
import { Schema } from './schema.model.ts';
export function myAwesomeSchematic(_options: Schema): Rule {
return (tree: Tree, _context: SchematicContext) => {
return tree;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment