static和export有什么关系

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

      }
}
export module Test{
    export var a = 1;
    export function sayHello(){

    }
}

  

猜你喜欢

转载自www.cnblogs.com/gamedaybyday/p/11802845.html