import {ParsedArrayType} from "./ParsedArrayType"; import {ParsedBuiltinType} from "./ParsedBuiltinType"; import {ParsedIdentifierType} from "./ParsedIdentifierType"; import {ParsedNamespacedIdentifierType} from "./ParsedNamespacedIdentifierType"; import {ParsedNumberLiteralType} from "./ParsedNumberLiteralType"; import {ParsedObjectType} from "./ParsedObjectType"; import {ParsedStringLiteralType} from "./ParsedStringLiteralType"; import {ParsedTupleType} from "./ParsedTupleType"; import {ParsedTypeExpression} from "./ParsedTypeExpression"; export type ParsedType = ParsedBuiltinType | ParsedStringLiteralType | ParsedNumberLiteralType | ParsedIdentifierType | ParsedNamespacedIdentifierType | ParsedObjectType | ParsedArrayType | ParsedTupleType | ParsedTypeExpression;