const [companies, applications] = await Promise.all([
appDomain.IRequestCompany.getAll(),
appDomain.IApplicationService.getAllApplications()
]);
437700cookie-checkTypescript await multiple promises
const [companies, applications] = await Promise.all([
appDomain.IRequestCompany.getAll(),
appDomain.IApplicationService.getAllApplications()
]);