use of io.crnk.gen.typescript.model.TSElement in project crnk-framework by crnk-project.
the class TSWriter method accept.
@Override
public void accept(TSModule module) {
appendLine();
appendExported(module);
builder.append("module ");
builder.append(module.getName());
startScope();
for (TSElement type : module.getElements()) {
type.accept(this);
}
endScope();
}
Aggregations