提交 23b0b3da 编写于 作者: J Johannes Rieken

don't get fooled again...

上级 d32557e5
......@@ -40,7 +40,7 @@ export interface ISnippet {
codeSnippet: string;
}
class SnippetsRegistry {
class SnippetsRegistry implements ISnippetsRegistry {
private _snippets: { [modeId: string]: { [owner: string]: ISnippet[] } } = Object.create(null);
......@@ -111,6 +111,6 @@ export function getNonWhitespacePrefix(model: IReadOnlyModel, position: IPositio
return '';
}
const snippetsRegistry = new SnippetsRegistry();
const snippetsRegistry: ISnippetsRegistry = new SnippetsRegistry();
Registry.add(Extensions.Snippets, snippetsRegistry);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册