1/** 2 * the ut for const in namespace, has the tag of constant and initializer 3 */ 4export namespace test { 5 /** 6 * @constant 7 */ 8 const name: string = '2'; 9}