What is the relationship between static and export

 

export default class Test{
      public static a = 1;
      public static sayHello(){

      }
}

 

export module Test{
    Export was a = 1;
    export function sayHello(){

    }
}

  

 

 

Guess you like

Origin www.cnblogs.com/gamedaybyday/p/11802845.html