Interface ParseOptionsShared

Shared between different config formats

interface ParseOptionsShared {
    definitions: NodeDefinition[];
    id?: string;
    ignored_literals: string[];
    log?: LogFn;
    maxCycles?: number;
    maxNodeDepth?: number;
    root_nodes: string[];
    source?: string;
}

Hierarchy (View Summary)

Properties

definitions: NodeDefinition[]
id?: string
ignored_literals: string[]
log?: LogFn
maxCycles?: number
maxNodeDepth?: number
root_nodes: string[]
source?: string