基于可写性的Typescript条件类型

时间:2019-01-11 18:42:23

标签: typescript typescript2.8

打字稿是否可以根据属性的可写性或可读性来有条件地过滤类型?例如:

interface Foo {
  readonly x: string;
  y: string
}
type FooOptions = Writable<Foo>; // { y: string }

0 个答案:

没有答案