@dbml/parse
Version:
> TODO: description
15 lines (14 loc) • 547 B
TypeScript
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;
}