Typescript await multiple promises

const [companies, applications] = await Promise.all([
    appDomain.IRequestCompany.getAll(),
    appDomain.IApplicationService.getAllApplications()
]);

43770cookie-checkTypescript await multiple promises