标签: typescript typescript2.8
打字稿是否可以根据属性的可写性或可读性来有条件地过滤类型?例如:
interface Foo { readonly x: string; y: string } type FooOptions = Writable<Foo>; // { y: string }