--- title: LSP full: true _openapi: preload: - ./specs/toolbox-api.json toc: - depth: 2 title: Get code completions url: '#get-code-completions' - depth: 2 title: Notify document closed url: '#notify-document-closed' - depth: 2 title: Notify document opened url: '#notify-document-opened' - depth: 2 title: Get document symbols url: '#get-document-symbols' - depth: 2 title: Start LSP server url: '#start-lsp-server' - depth: 2 title: Stop LSP server url: '#stop-lsp-server' - depth: 2 title: Get workspace symbols url: '#get-workspace-symbols' structuredData: headings: - content: Get code completions id: get-code-completions - content: Notify document closed id: notify-document-closed - content: Notify document opened id: notify-document-opened - content: Get document symbols id: get-document-symbols - content: Start LSP server id: start-lsp-server - content: Stop LSP server id: stop-lsp-server - content: Get workspace symbols id: get-workspace-symbols contents: - content: Get code completion suggestions from the LSP server heading: get-code-completions - content: Notify the LSP server that a document has been closed heading: notify-document-closed - content: Notify the LSP server that a document has been opened heading: notify-document-opened - content: Get symbols (functions, classes, etc.) from a document heading: get-document-symbols - content: Start a Language Server Protocol server for the specified language heading: start-lsp-server - content: Stop a Language Server Protocol server heading: stop-lsp-server - content: Search for symbols across the entire workspace heading: get-workspace-symbols methods: - POST - POST - POST - GET - POST - POST - GET --- {/* This file was generated by Fumadocs. Do not edit this file directly. Any changes should be made by running the generation command again. */} export default function Layout(props) { const { APIPage, OpenAPIPage } = props.components ?? {}; // "APIPage" is the old name from v10, this allows both for backward compatibility const Comp = OpenAPIPage ?? APIPage; return ( <> {props.children} ); }