import { TypeEnum } from "./TypeEnum"; import { InterfaceLiteralType } from "./InterfaceLiteralType"; export interface ParsedBooleanLiteral extends InterfaceLiteralType<"true" | "false"> { _type: TypeEnum.BOOLEAN_LITERAL; value: "true" | "false"; }