예제 #1
0
 private void Check(Type type, string expected, TsOptions options = null)
 {
     TsGenerator.GenerateTypescriptType(type, options).Should().Be(expected);
 }
예제 #2
0
 private void Check <T>(string expected, TsOptions options = null)
 {
     Check(typeof(T), expected, options);
 }