ReactLearning/TSLearning/Section 1/app.ts

9 lines
246 B
TypeScript
Raw Normal View History

2021-04-22 18:23:26 -04:00
function sendRequest(data: string, cb: (response: any) => void) {
// ... sending a request with "data"
return cb({data: 'Hi there!'});
}
sendRequest('Send this!', (response) => {
console.log(response);
return true;
});