free-fx
Version:
11 lines (10 loc) • 363 B
TypeScript
import { ISpecSections } from '../../../spec/SpecSections';
import { Field } from '../Field';
import { SectionType } from './SectionType';
export declare class Sections {
sections: ISpecSections[];
cacheMap: Map<string, ISpecSections>;
sectionType: SectionType;
constructor();
processSection(item: Field, sectionId: string): void;
}