import { TypeEnum } from "./TypeEnum"; import { InterfaceLiteralType } from "./InterfaceLiteralType"; export interface ParsedStringLiteralType extends InterfaceLiteralType { _type: TypeEnum.STRING_LITERAL_TYPE; value: string; }