Typically, the term class variable is used for variables which are class members, i.e. variables that live on the class, but not on the instance. That means, they exist before any instance has been constructed.
In TypeScript, these class variables are created with the static keyword. (This is the reason, why they are also called static methods.) In your example, only variable1 could be made a class variable, because the other two variables are instance members (also called instance variables), because they get their value during instantiation - in the constructor method.
In order to make variable1 a class method, make it static, like so:
export class app {
static variable1 = "Hello, World";
public variable2: any;
public variable3: any;
constructor(count){
this.variable1 = "something";
this.variable2 = 1 + count;
}
}
Now, it can be addressed from the classapp, without any instantiation:
console.log(app.variable1) // Hello, World