Skip to content

IJSONWorker

原文链接

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

ts
interface IJSONWorker {
    getMatchingSchemas(uri): Promise<MatchingSchema[]>;
    parseJSONDocument(uri): Promise<JSONDocument>;
}

getMatchingSchemas

  • 语法:getMatchingSchemas(uri): Promise<MatchingSchema[]>
  • 参数:uristring
  • 返回值:Promise<MatchingSchema>

parseJSONDocument

  • 语法:parseJSONDocument(uri): Promise<JSONDocument>
  • 参数:uristring
  • 返回值:Promise<JSONDocument>