UNPKG

476 BTypeScriptView Raw
1// Type definitions for has-symbols 1.0
2// Project: https://github.com/ljharb/has-symbols#readme
3// Definitions by: Jordan Harband <https://github.com/ljharb>
4// ExE Boss <https://github.com/ExE-Boss>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6
7/**
8 * Returns `true` only if the environment has native `Symbol` support.
9 *
10 * Not polyfillable, not forgeable.
11 */
12declare function hasNativeSymbols(): boolean;
13export = hasNativeSymbols;