typings.ts 64 B

123456
  1. // 枚举定义
  2. export enum TestEnum {
  3. A = '1',
  4. B = '2',
  5. }