interface Foo { readonly aaa: number; bbb: Foo; } function test<K extends keyof Foo>(a: K) { } Auto complete for the first parameter should show "aaa" and ...
確定! 回上一頁