Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 245 Bytes

File metadata and controls

12 lines (9 loc) · 245 Bytes

Asynchronous

You can write a maintainable async codes with typescript/javascript async await support.

class HomeService {

  public async findJob() {
    const result = await somethingAsync();
  }
}