Skip to content

DocumentFormattingEditProvider

原文链接

https://microsoft.github.io/monaco-editor/docs.html#interfaces/languages.DocumentFormattingEditProvider.html

文档格式设置提供程序接口定义扩展和格式设置功能之间的约定。

ts
interface DocumentFormattingEditProvider {
    displayName?: string;
    provideDocumentFormattingEdits(model, options, token): ProviderResult<TextEdit[]>;
}

displayName

  • 类型: string

provideDocumentFormattingEdits