Test if a type is a IndexType.
IndexType
declare const type: ts.Type;if (isIndexType(type)) { // ...} Copy
declare const type: ts.Type;if (isIndexType(type)) { // ...}
Test if a type is a
IndexType
.