TypeScript/tests/cases/compiler/metadataOfStringLiteral.ts

8 lines
195 B
TypeScript

// @experimentalDecorators: true
// @emitDecoratorMetadata: true
function PropDeco(target: Object, propKey: string | symbol) { }
class Foo {
@PropDeco
public foo: "foo" | "bar";
}