提交 5ebf587b 编写于 作者: J Johannes Rieken

extract SnippetConfig type, #9286

上级 7fa48d2d
......@@ -26,9 +26,11 @@ export interface ISuggestionItem {
support: ISuggestSupport;
}
export type SnippetConfig = 'top' | 'bottom' | 'inline' | 'none' | 'only';
export interface ISuggestOptions {
groups?: ISuggestSupport[][];
snippetConfig?: 'top' | 'bottom' | 'inline' | 'none' | 'only';
snippetConfig?: SnippetConfig;
}
export function provideSuggestionItems(model: IReadOnlyModel, position: Position, options: ISuggestOptions = {}): TPromise<ISuggestionItem[]> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册