jspurefix
Version:
pure node js fix engine
12 lines (11 loc) • 479 B
TypeScript
import { ContainedField, IContainedSet } from '../contained';
import { FixDefinitions } from '../definition';
export declare class CompilerType {
readonly definitions: FixDefinitions;
readonly set: IContainedSet;
readonly qualifiedName: string;
readonly snaked: string;
constructor(definitions: FixDefinitions, set: IContainedSet, qualifiedName: string);
getExtended(field: ContainedField): string;
getFieldGroupName(field: ContainedField): string;
}