TypeScript/tests/baselines/reference/symbolProperty59.errors.txt

9 lines
423 B
Plaintext
Raw Normal View History

2015-02-11 01:13:28 +01:00
tests/cases/conformance/es6/Symbols/symbolProperty59.ts(2,5): error TS2464: A computed property name must be of type 'string', 'number', 'symbol', or 'any'.
==== tests/cases/conformance/es6/Symbols/symbolProperty59.ts (1 errors) ====
interface I {
[Symbol.keyFor]: string;
~~~~~~~~~~~~~~~
!!! error TS2464: A computed property name must be of type 'string', 'number', 'symbol', or 'any'.
}