所以我输入了以下内容
type Duck = {
colors: string;
featheres: number;
}
type DuckProps = keyof Duck
我如何检查/验证例如DuckProps
是否有价值:'colors' | 'feathers'
?
我似乎无法控制台日志或使用它,因为它只会返回
[eval].ts:8:7 - error TS2693: 'DuckProps' only refers to a type, but is being used as a value here.
您如何通过 repl 与 typesript 特定的结构(接口、类型等)进行交互?换句话说,当我输入 Duck 时。我希望会出现这样的情况:
$鸭
Duck<Typescript type> { color: string; feathers: number }