E0713: getters and setters cannot be generators
Use of the '*' character, defining generator functions, is not allowed on getters or setters. Getters and setters are synchronous operations and do not support the generator functionality.
To fix this error define a getter or setter, using regular function syntax.