打字机 - 公共变量而不是从C#到Typescript

时间:2018-05-08 19:03:52

标签: c# typescript typewriter

我有以下的Typescript模板。 * .tst

module App { $Classes(*Model)[
    export class $Name { $Properties[
        public $name: $Type;]
    }]
}

按照预期使用打字机生成了Model。 (对于Getter Setter)

public class CustomerModel
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public ICollection<OrderModel> Orders { get; set; }
    }

但是我找不到任何文档或者不知道是否有可能跟随生成typescript文件。 (对于公共变量。)

public class CustomerModel
        {
            public int Id;
            public string Name;
            public ICollection<OrderModel> Orders;
        }

那么如何为公共变量生成打字稿?

1 个答案:

答案 0 :(得分:1)

没关系。我通过intellisense得到了一些东西。 tst文件应如下所示。

module App { $Classes(*Model)[
    export class $Name { $Fields[
        public $name: $Type;]
    }]
}