Plugins 升华文本类型脚本自动导入插件

Plugins 升华文本类型脚本自动导入插件,plugins,typescript,angular,sublimetext3,sublime-text-plugin,Plugins,Typescript,Angular,Sublimetext3,Sublime Text Plugin,我正在使用新的angular 2 beta版,我开始喜欢打字脚本了。然而,有一件事真的让我很恼火,那就是必须经常到页面的顶部做一个导入语句 例:注意1)和2) 从'angular2/core'导入{OnInit}// import {OnInit} from 'angular2/core';// <---- 2) I WOULD LIKE A PLUGIN THAT WILL DO THIS! export class TestComponent implements OnInit //

我正在使用新的angular 2 beta版,我开始喜欢打字脚本了。然而,有一件事真的让我很恼火,那就是必须经常到页面的顶部做一个导入语句

例:注意1)和2)

从'angular2/core'导入{OnInit}//
import {OnInit} from 'angular2/core';// <---- 2) I WOULD LIKE A PLUGIN THAT WILL DO THIS!

export class TestComponent implements OnInit // <-- 1) ONCE I TYPE THIS {
    ngOnInit(): any {
    }
}