Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support type aliasing to basic types
Previously, validation schema generation was skipped on a type alias: ``` type A = B ``` Whereas, a new type was fine: ``` type A B ``` This commit implements support for generating validation schemas for type aliases to basic types, i.e. string, int, etc. Signed-off-by: Chris Tarazi <tarazichris@gmail.com>
- Loading branch information