Welcome to ngentest@2.2.4 on Vercel

Usage Example
  fetch('/api/ngentest', {
    method: 'POST',
    headers: {'Accept': 'application/json', 'Content-Type': 'application/json'},
    body: JSON.stringify({
        typescript: 
          "@Component({selector: 'app-root'})" +
          "class MyTestComponent {}"
      })
    }).then(resp => resp.json())
    .then(resp => console.log(resp.output))