Skip to content

Instantly share code, notes, and snippets.

@radekwarisch
Created January 31, 2021 13:41
Show Gist options
  • Save radekwarisch/a93d5ea7c1182b34a559bacdce245789 to your computer and use it in GitHub Desktop.
Save radekwarisch/a93d5ea7c1182b34a559bacdce245789 to your computer and use it in GitHub Desktop.
Schematics Rule interface
export type Rule = (tree: Tree, context: SchematicContext) =>
Tree | Observable<Tree> | Rule | Promise<void | Rule> | void;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment