Given the following:
enum FooKeys { FOO = \'foo\', BAR = \'bar\', }
I\'d like to make an interface like this one, but instead of defini
yes?
enum FooKeys { FOO = 'foo', BAR = 'bar', } interface Foo { foo: string bar: string } class Test implements Foo { public foo: string = FooKeys.FOO; public bar: string = FooKeys.BAR; }