free-fx
Version:
13 lines (12 loc) • 380 B
TypeScript
import { ISpecEnums } from './../../spec/SpecEnums';
export declare class EnumType {
tag: number | null;
value: string | number | null;
symbolicName: string | null;
group: string | null;
sort: number | null;
description: string | null;
elaboration: string | null;
added: string | null;
setEnumeration(enumType: ISpecEnums): void;
}