Example #1
0
 public TsClass(Type cSharpType, string name, bool isExport, ICollection <TsClassProperty> properties,
                TsTypeBase baseType, ICollection <TsGenericArgument> genericArguments) : base(cSharpType)
 {
     IsExport         = isExport;
     Properties       = properties;
     BaseType         = baseType;
     GenericArguments = genericArguments;
     Name             = name;
 }
Example #2
0
 protected TsCollection(Type cSharpType, TsTypeBase elementType) : base(cSharpType)
 {
     ElementType = elementType;
 }
Example #3
0
 public TsArray(Type cSharpType, TsTypeBase elementType) : base(cSharpType, elementType)
 {
 }