beth-parser
Version:
Parser library for Bethesda's Creation Engine data files
17 lines (16 loc) • 456 B
TypeScript
import RecordEntry from "./RecordEntry";
import { GroupType } from "../ModfileDefs";
export declare type ChildEntry = GroupEntry | RecordEntry;
/**
* Group (container) entry.
*/
export default class GroupEntry {
type: GroupType;
label: number;
children: ChildEntry[];
constructor(type: GroupType, label: number, children?: ChildEntry[]);
/**
* Convert to a more user-friendly format.
*/
toJSON(): any;
}