ReactLearning/TSLearning/Section 1/app.ts
2021-04-23 10:23:26 +12:00

9 lines
246 B
TypeScript

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;
});