Skip to content

Instantly share code, notes, and snippets.

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 jonbcampos/3e1d32bbe019b68b706290c88b258835 to your computer and use it in GitHub Desktop.
Save jonbcampos/3e1d32bbe019b68b706290c88b258835 to your computer and use it in GitHub Desktop.
// DON'T DO THIS
options.skipVo ? noop() : schematic("vo", {
project: options.project,
path: options.path,
name: options.vo,
spec: options.spec,
obj: options.obj
}),
// DO THIS
const voOptions: VoOptions = {
project: options.project,
path: options.path,
name: options.vo,
spec: options.spec,
obj: options.obj
};
...
options.skipVo ? noop() : schematic("vo", voOptions),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment