We used TypeScript as our development language because it offers a powerful combination of strong static typing and enhancing our development process and codebase.
class Main {
public async start(params: string[]): Promise<void> {
await this.call();
return console.log(true);
}
}