Interface ObjectTypeParameterData

Data for an object type parameter.

interface ObjectTypeParameterData {
    description: null | NodeContent;
    entityType: "objectTypeParameter";
    extends: null | string;
    id: string;
    name: string;
    signature: string;
}

Hierarchy (View Summary)

Properties

description: null | NodeContent

The entity's description, if any.

entityType: "objectTypeParameter"

The entity's type.

extends: null | string

The type parameter's extension.

id: string

The entity's unique id (relative to others in the same context). Used as key in collections.

Specifically:

  • In classes, enums, interfaces, external objects and annotations: the qualifiedName.
  • In packages, enum constants, fields, method type parameters, object type parameters and parameters: the name.
  • In methods: the prototype, to avoid conflicts with overloaded methods.
name: string

The entity's name.

signature: string

The entity's signature.