Type alias TypeKindMap

TypeKindMap: {
    array: JSONOutput.ArrayType;
    conditional: JSONOutput.ConditionalType;
    indexedAccess: JSONOutput.IndexedAccessType;
    inferred: JSONOutput.InferredType;
    intersection: JSONOutput.IntersectionType;
    intrinsic: JSONOutput.IntrinsicType;
    literal: JSONOutput.LiteralType;
    mapped: JSONOutput.MappedType;
    namedTupleMember: NamedTupleMemberType;
    optional: JSONOutput.OptionalType;
    predicate: JSONOutput.PredicateType;
    query: JSONOutput.QueryType;
    reference: JSONOutput.ReferenceType;
    reflection: JSONOutput.ReflectionType;
    rest: JSONOutput.RestType;
    templateLiteral: JSONOutput.TemplateLiteralType;
    tuple: JSONOutput.TupleType;
    typeOperator: JSONOutput.TypeOperatorType;
    union: JSONOutput.UnionType;
    unknown: JSONOutput.UnknownType;
}

Generated using TypeDoc