UNPKG

@dbml/parse

Version:
15 lines (14 loc) 547 B
import { ElementInterpreter, InterpreterDatabase } from '../types'; import { ElementDeclarationNode } from '../../parser/nodes'; import { CompileError } from '../../errors'; export declare class StickyNoteInterpreter implements ElementInterpreter { private declarationNode; private env; private note; constructor(declarationNode: ElementDeclarationNode, env: InterpreterDatabase); interpret(): CompileError[]; private interpretName; private interpretSettingList; private interpretBody; private interpretNote; }