This works: ```ts interface Test { A: 'a' | 'b' | 'c' } function test(a: Test['A']) { } test('a') ``` Would be nice if we could use it as that: ```ts function test2(a: Test.A) { } test2('a') ```
This works:
Would be nice if we could use it as that: