@dbml/parse
Version:
> TODO: description
13 lines (12 loc) • 486 B
TypeScript
import { CompileError } from '../../errors';
import { ElementDeclarationNode } from '../../parser/nodes';
import { ElementInterpreter, InterpreterDatabase } from '../types';
export declare class ProjectInterpreter implements ElementInterpreter {
private declarationNode;
private env;
private project;
constructor(declarationNode: ElementDeclarationNode, env: InterpreterDatabase);
interpret(): CompileError[];
private interpretName;
private interpretBody;
}