UNPKG

@dbml/parse

Version:
13 lines (12 loc) 486 B
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; }