nestrs-cli-rs 0.1.0

Rust port of the Nest CLI for the nestrs organization.
Documentation
1
2
3
4
5
6
7
8
//! Upstream source: `../nest-cli/lib/schematics/schematic.option.ts`.

pub type SchematicOption = super::SchematicOption;
pub type SchematicOptionValue = super::SchematicOptionValue;

pub fn new(name: impl Into<String>, value: impl Into<SchematicOptionValue>) -> SchematicOption {
    super::SchematicOption::new(name, value)
}