Class property which we can be use in any type of method(static & non-static)

Here we have a class test

class test{
    static property1:any;
    property2:any;
    static method1(){
        console.log('method1',this.property1);
        console.log('proprety2')
    }
    async method2(){
        console.log('property2',this.property2);
        console.log('prepty1',test.property1);
    }
}

Question:- Here i am not able to use property2 in static method. Is there any type of class property exist which we can be used in both methods static and non-static?