import { INodeService } from "../node/i-node-service"; import { BooleanLiteral, LiteralExpression, NoSubstitutionTemplateLiteral, StringLiteral, TemplateExpression } from "typescript"; export interface ITemplateExpressionService extends INodeService { stringify(expression: TemplateExpression | NoSubstitutionTemplateLiteral | StringLiteral | LiteralExpression | BooleanLiteral): string; }