xxxxxxxxxx
// In TypeScript, it is common to use PascalCase for class and interface names,
// camelCase for variable and function names, and UPPER_CASE_SNAKE_CASE for
// constant names.
class MyClass {
myVariable: string;
myFunction(): void {
const MY_CONSTANT = 'constant value';
}
}