All Downloads are FREE. Search and download functionalities are using the official Maven repository.

concrete.templates.jaxrs.axios.code.v1.EnumBase.d.ts.ftl Maven / Gradle / Ivy

There is a newer version: 0.5.3-RC1
Show newest version
export declare type Int = number;
export declare type Float = number;

declare interface EnumItem{
    key: string;
    value: T;
}
export declare class BaseEnum {
    /**
     * 作废,命名拼写错误,某个枚举值的标签
     * @deprecated
     */
    _lableOf: (v: T) => string;
    /**
     * 某个枚举值的标签
     * @deprecated
     */
    _labelOf: (v: T) => string;
    /**
     * 常量的键值列表
     * @deprecated
     */
    _toArray: (values:T[])=>EnumItem[];
    /**
     * 某个枚举值的标签
     */
    labelOf: (v: T) => string;
    /**
     * 常量的键值列表
     */
    toArray: (values:T[])=>EnumItem[];
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy