如何使用JetBrains WebStorm自动完成TypeScript接口

时间:2017-12-24 12:55:13

标签: typescript autocomplete phpstorm webstorm

我在一个单独的文件中有一个Job接口:

export interface Job {
    id: string;
    title: string;
    description: string;
    employerId: string;
    location: {
        address: string;
        city: string;
        state: string;
        zip: string;
    };
    createdAt: string;
}

当我想使用它时..

const mockJob: Job = {}

是否有快速方法可以让我显示所有属性,以便在WebStorm中键入值?

这里的任何帮助都会非常感激,让他们烦恼地输入它们。

1 个答案:

答案 0 :(得分:2)

您想要自动生成属性存根吗?不,现在没有这种可能性,此功能仅在2018.1中可用(请参阅WEB-29614和链接的票证)。 但您可以在大括号内点击Ctrl+Space并从完成中选择属性