typings.ts 64 B

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