import { TypeEnum } from "./TypeEnum"; import { InterfaceLiteralType } from "./InterfaceLiteralType"; export interface ParsedNumberLiteralType extends InterfaceLiteralType { _type: TypeEnum.NUMBER_LITERAL_TYPE; value: number; }