Static Values

The configuration system can also output static text meant to help a user operate the interface such as, documentation, explanations, or even a dynamically calculated phrase.

1readonly staticText = "This text will appear in the output"

Using fat arrow functions, you can also make the output text dynamic.

1name : string;
2readonly output = () => `Hello ${this.name}!`;