79120661

Date: 2024-10-24 06:46:43
Score: 0.5
Natty:
Report link

Create class and define static constants there.

export class Settings {
  static something: 'someone';
  static apiUrl = '/api';
  static defaultPageSize = 5;
}

Can be used anywhere in the application.

url = Settings.apiUrl;

Confirmed to work with TS ver 5.5. Type safety. No javascript hackery needed.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Olavi Vaino