Type alias IsSymbol<T>

IsSymbol<T>: T extends symbol
    ? true
    : false

Type Parameters

  • T

Returns

true if T is symbol, otherwise false.