1
我來自Typescript,現在嘗試使用Flow Type。流動型鑄造
在TypeScript中,我可以做到這一點。
interface x {
name: string;
}
let y = <x> {
name: "John Doe"
};
我怎樣才能做到這一點與流型?
在Flow - Announcing Typecasts我看到流的語法是例如cast。
(myVar: myType)
但
let y = {
name: "John Doe"
}: x;
不起作用。
Thx!我儘快接受... – dknaack