UNPKG

@yoyoboot/l-52abp-ng

Version:

This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.13.

16 lines (15 loc) 349 B
export interface IEnumMap { /** 键 */ key: number; /** 值 */ value: string | undefined; /** 显示名称 */ displayName: string | undefined; } export interface IEnumService { /** * 根据枚举类型获取枚举显示列表 * @param type 枚举类型字符串 */ getData(type: string): IEnumMap[]; }