Here is my code:
async buildSomething(): any {
const requestData = await request;
requestData.forEach(i => this.table.push(i));
}
How I should type a void function, because it does something but It does not return anything.
In my case I used any but tslint shows me this:
Type 'any' is not a valid async function return type in ES5/ES3 because it does not refer to a Promise-compatible constructor value.
How should I achieve this?
void?