TypeScript/tests/cases/conformance/types/uniqueSymbol/uniqueSymbolsDeclarationsInJsErrors.ts

23 lines
467 B
TypeScript
Raw Normal View History

// @target: esnext
// @lib: esnext
// @declaration: true
// @allowJs: true
// @checkJs: true
// @filename: uniqueSymbolsDeclarationsInJsErrors.js
// @out: uniqueSymbolsDeclarationsInJsErrors-out.js
class C {
/**
* @type {unique symbol}
*/
static readwriteStaticType;
/**
* @type {unique symbol}
* @readonly
*/
static readonlyType;
/**
* @type {unique symbol}
*/
static readwriteType;
}