Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Project Info

Introduction

Amdatu TypeScript Generator creates typescript classes and/or interfaces of your java class or enum files.

For example the Java object Family:

public class Family {
    public String name;
    public Dog dog;
    public List<Dog> dogs;
}


Will become in typescript:

/// <reference path="Dog.d.ts" />

interface Family {
    name?: string;
    dog?: Dog;
    dogs?: Dog[];
}

  • No labels