Function isInstantiableType

  • Test if a type is a InstantiableType.

    Parameters

    • type: Type

    Returns type is InstantiableType

    Example

    declare const type: ts.Type;

    if (isInstantiableType(type)) {
    // ...
    }